@@ -23,7 +23,7 @@ call vundle#begin()
23
23
Plugin ' gmarik/vundle'
24
24
25
25
if has (' python3' ) || has (' python' )
26
- Plugin ' Valloric /YouCompleteMe'
26
+ Plugin ' ycm-core /YouCompleteMe'
27
27
endif
28
28
" Plugin 'lukerandall/haskellmode-vim'
29
29
" Plugin 'dag/vim2hs'
@@ -39,13 +39,15 @@ Plugin 'idris-hackers/idris-vim'
39
39
Plugin ' rust-lang/rust.vim'
40
40
Plugin ' qnighy/lalrpop.vim'
41
41
Plugin ' google/vim-jsonnet'
42
+ Plugin ' LnL7/vim-nix'
42
43
43
44
Plugin ' Shougo/vimproc.vim'
44
45
Plugin ' neovimhaskell/haskell-vim'
45
46
Plugin ' ujihisa/neco-ghc'
46
47
Plugin ' bitc/vim-hdevtools'
47
48
Plugin ' hashivim/vim-terraform'
48
49
Plugin ' saltstack/salt-vim'
50
+ Plugin ' nathanaelkane/vim-indent-guides'
49
51
call vundle#end ()
50
52
51
53
filetype plugin indent on
@@ -97,7 +99,7 @@ if has("autocmd")
97
99
" For all text files set 'textwidth' to 78 characters.
98
100
autocmd FileType text setlocal textwidth = 78
99
101
100
- au FileType python setlocal tabstop = 8 expandtab shiftwidth = 4 softtabstop = 4 foldmethod = indent
102
+ " au FileType python setlocal tabstop=8 expandtab shiftwidth=4 softtabstop=4 foldmethod=indent
101
103
" When editing a file, always jump to the last known cursor position.
102
104
" Don't do it when the position is invalid or when inside an event handler
103
105
" (happens when dropping a file on gvim).
@@ -180,7 +182,7 @@ let g:syntastic_mode_map = { 'mode': 'active',
180
182
let g: syntastic_python_python_exec = ' python'
181
183
let g: syntastic_python_checkers= [' python' , ' pyflakes' ]
182
184
let g: syntastic_idris_checkers= []
183
- " let g:syntastic_rust_checkers=[]
185
+ let g: syntastic_rust_checkers= []
184
186
185
187
let g: syntastic_asm_dialect= " intel"
186
188
@@ -207,3 +209,5 @@ set guioptions-=T
207
209
let g: ctrlp_max_files= 0
208
210
let g: Tex_AdvancedMath = 1
209
211
set winaltkeys = no
212
+
213
+ let g: indent_guides_enable_on_vim_startup = 1
0 commit comments