-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vimrc
63 lines (48 loc) · 1.23 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
set nocompatible
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'rstacruz/sparkup',{'rtp':'vim/'}
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-endwise'
Plugin 'vim-ruby/vim-ruby'
"All of your Plugins must be added before the following line
call vundle#end()
filetype plugin indent on
:filetype plugin on
:syntax on
"let g:solarized_termcolors=256
let g:solarized_termtrans=1
set background=dark
colorscheme solarized
"relative linenumbers
set relativenumber
"highlight cursor and column
set cursorline
set cursorcolumn
let $PYTHONPATH='/usr/lib/python3.4/site-packages'
set laststatus=2
"random
set backspace=2 "Makes backspace function like other programs
set showmatch "Highlights matching brackets
set cc=80 "Ruler for 80th column
"tabs
set expandtab
"set tabstop=4 "Spaces instead of tab
"set shiftwidth=4
set smarttab
"set shiftwidth=4
"indenting
set autoindent
set number
set ruler
set hlsearch
"Autocomplete rules
inoremap ( ()<Left>
inoremap [ []<Left>
"Automatically completes curly brackes
inoremap { {}<Left>