mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 23:17:35 +00:00
Neo Necomplete/complecache install
This commit is contained in:
parent
fa5cf71b03
commit
0efdca96d8
17
vimrc
17
vimrc
@ -46,12 +46,17 @@ Plugin 'bling/vim-airline' " Custom Status Line
|
||||
|
||||
" -- System --
|
||||
Plugin 'tpope/vim-dispatch' " Allow async make
|
||||
Plugin 'Shougo/neocomplcache.vim' " Autocomplete
|
||||
Plugin 'tpope/vim-rsi' " emacs bindinds in insert
|
||||
Plugin 'tpope/vim-repeat' " Repeat mapped commands with .
|
||||
" Needs to be compiled
|
||||
Plugin 'Shougo/vimproc.vim' " Async for plugins
|
||||
|
||||
if has('lua')
|
||||
Plugin 'Shougo/neocomplete.vim' " Autocomplete
|
||||
else
|
||||
Plugin 'Shougo/neocomplcache.vim' " Autocomplete
|
||||
end
|
||||
|
||||
" -- Themes --
|
||||
Plugin 'vividchalk.vim'
|
||||
Plugin 'wombat256.vim'
|
||||
@ -346,12 +351,20 @@ nnoremap <leader>gw :Gwrite<CR>
|
||||
" Toggle QuickFix window
|
||||
nnoremap <silent> <F6> :QFix<CR>
|
||||
|
||||
" neocomplete / neocomplcache
|
||||
if has('lua')
|
||||
let g:acp_enableAtStartup = 0
|
||||
let g:neocomplete#enable_at_startup = 1
|
||||
"let g:neocomplete#enable_smart_case = 1
|
||||
let g:neocomlete#max_list=10
|
||||
else
|
||||
" NeoComplCache
|
||||
let g:neocomplcache_enable_at_startup = 1
|
||||
let g:neocomplcache_enable_smart_case = 1
|
||||
"let g:neocomplcache_enable_smart_case = 1
|
||||
let g:neocomplcache_max_list = 10
|
||||
"let g:neocomplcache_enable_camel_case_completion = 1
|
||||
let g:neocomplcache_enable_fuzzy_completion = 1
|
||||
endif
|
||||
|
||||
nmap <leader>a :Ag<Space>
|
||||
nmap <leader>i* :Ag<Space>-i<Space>'\b<c-r><c-W>\b'<CR>
|
||||
|
Loading…
Reference in New Issue
Block a user