Created
August 26, 2014 08:29
-
-
Save hfm/3020861700455794128a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NeoBundle 'Shougo/vimproc', { | |
| \ 'build' : { | |
| \ 'mac' : 'make -f make_mac.mak', | |
| \ 'unix' : 'make -f make_unix.mak', | |
| \ }} | |
| NeoBundleLazy 'Shougo/neocomplete.vim', { | |
| \ "autoload": {'insert': 1}} | |
| NeoBundleLazy 'Shougo/neosnippet', { | |
| \ 'autoload': {'insert': 1}} | |
| NeoBundleLazy 'Shouge/neosnippet-snippets', { | |
| \ 'autoload': {'insert': 1}} |
hfm
commented
Aug 26, 2014
Author
Author
let g:acp_enableAtStartup=0
let g:neocomplete#enable_at_startup=1
let g:neocomplete#enable_smart_case=1
let g:neocomplete#sources#syntax#min_keyword_length=3
let g:neocomplete#lock_buffer_name_pattern='\*ku\*'
inoremap <silent> <CR> <C-R>=<SID>my_cr_func()<CR>
function! s:my_cr_func()
return pumvisible() ? neocomplete#close_popup() : "\<CR>"
endfunction
inoremap <expr><C-h> neocomplete#smart_close_popup()."\<C-h>"
inoremap <expr><BS> neocomplete#smart_close_popup()."\<C-h>"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment