Ver Código Fonte

~/.vimrc: Only load YouCompleteMe when we have python.

luc 12 anos atrás
pai
commit
86c989ca3a
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      .vimrc

+ 3 - 1
.vimrc

@ -6,7 +6,9 @@ if isdirectory($HOME . '/.vim/bundle/vundle')
6 6
	call vundle#rc()
7 7
8 8
	Bundle 'gmarik/vundle'
9
	Bundle 'Valloric/YouCompleteMe'
9
	if has('python')
10
		Bundle 'Valloric/YouCompleteMe'
11
	endif
10 12
	Bundle 'Lokaltog/vim-easymotion'
11 13
	"Bundle 'laurilehmijoki/haskellmode-vim'
12 14
	"au BufNewFile,BufRead *.hs compiler ghc