neocomplete, airline, vim-wakatime
This commit is contained in:
parent
01e55776b9
commit
0e90819641
26
.vimrc
26
.vimrc
@ -9,9 +9,35 @@ Plugin 'VundleVim/Vundle.vim'
|
||||
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
|
||||
Plugin 'Shougo/neocomplete'
|
||||
|
||||
Plugin 'bling/vim-airline'
|
||||
|
||||
Plugin 'wakatime/vim-wakatime'
|
||||
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
" To ignore plugin indent changes, instead use:
|
||||
"filetype plugin on
|
||||
|
||||
" Disable AutoComplPop.
|
||||
let g:acp_enableAtStartup = 0
|
||||
" Use neocomplete.
|
||||
let g:neocomplete#enable_at_startup = 1
|
||||
" Use smartcase.
|
||||
let g:neocomplete#enable_smart_case = 1
|
||||
" Set minimum syntax keyword length.
|
||||
let g:neocomplete#sources#syntax#min_keyword_length = 3
|
||||
let g:neocomplete#lock_buffer_name_pattern = '\*ku\*'
|
||||
|
||||
" Define keyword.
|
||||
if !exists('g:neocomplete#keyword_patterns')
|
||||
let g:neocomplete#keyword_patterns = {}
|
||||
endif
|
||||
|
||||
let g:airline#extensions#branch#enabled = 1
|
||||
let g:airline#extensions#syntastic#enabled = 1
|
||||
let g:airline_powerline_fonts = 0
|
||||
|
||||
set mouse=a
|
||||
set number
|
||||
|
Loading…
Reference in New Issue
Block a user