diff options
author | yushyin <yushyin@saga> | 2016-11-27 13:07:49 +0100 |
---|---|---|
committer | yushyin <yushyin@saga> | 2016-11-27 13:07:49 +0100 |
commit | 2ab0212180ffcd1a1367a52517ffaa0174eb9f2c (patch) | |
tree | bdd03d19dfd177e12108b09cbca59e1a38d00687 | |
parent | f5efb20b4c820121d29814fec8f7296ffc9913ae (diff) | |
download | dotfiles-2ab0212180ffcd1a1367a52517ffaa0174eb9f2c.tar.gz dotfiles-2ab0212180ffcd1a1367a52517ffaa0174eb9f2c.tar.xz |
Vim: Replace ultisnips with neosnippet
-rw-r--r-- | vim/neobundle.toml | 18 | ||||
-rw-r--r-- | vim/vimrc | 9 |
2 files changed, 16 insertions, 11 deletions
diff --git a/vim/neobundle.toml b/vim/neobundle.toml index 623b872..8047946 100644 --- a/vim/neobundle.toml +++ b/vim/neobundle.toml @@ -31,14 +31,6 @@ repository = 'Shougo/vimfiler.vim' lazy = 0 [[plugins]] -repository = 'SirVer/ultisnips' - -[[plugins]] -repository = 'honza/vim-snippets' -lazy = 1 -on_i = 1 - -[[plugins]] repository = 'chriskempson/base16-vim' [[plugins]] @@ -126,6 +118,16 @@ repository = 'Shougo/vinarise.vim' on_cmd = 'Vinarise' [[plugins]] +repository = 'Shougo/neosnippet.vim' +lazy = 1 +on_map = ['i', '<Plug>'] + +[[plugins]] +repository = 'Shougo/neosnippet-snippets' +lazy = 1 +on_source = 'neosnippet.vim' + +[[plugins]] repository = 'junegunn/vim-easy-align' lazy = 1 on_cmd = ['EasyAlign', 'LiveEasyAlign'] @@ -60,9 +60,12 @@ if neobundle#tap('vimfiler.vim') let neobundle#hooks.on_source = s:plugrc . '/vimfiler.rc.vim' call neobundle#untap() endif -if neobundle#tap('ultisnips') - let g:UltiSnipsForwardTrigger = "<c-,>" - let g:UltiSnipsBackwardTrigger = "<c-.>" +if neobundle#tap('neosnippet.vim') + let g:neosnippet#snippets_directory = + \ $XDG_CONFIG_HOME . '/vim/snippets' + imap <C-k> <Plug>(neosnippet_expand_or_jump) + smap <C-k> <Plug>(neosnippet_expand_or_jump) + xmap <C-k> <Plug>(neosnippet_expand_or_jump) call neobundle#untap() endif if neobundle#tap('clang_complete') |