diff options
author | Urbain Vaes <urbain@vaes.uk> | 2017-04-26 11:51:47 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2017-04-26 11:51:47 +0100 |
commit | 9600f2f2037429da7179b2399347b1857028de85 (patch) | |
tree | b1c809a9f077627e69c806c1d290a60ae754c1a8 /vim/.vimrc | |
parent | 5e0197ee538a1c216027cc69baaa776a9f213f3e (diff) |
Make various improvements
Diffstat (limited to 'vim/.vimrc')
-rw-r--r-- | vim/.vimrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -60,6 +60,7 @@ Plug 'vim-scripts/ReplaceWithRegister' Plug 'vim-scripts/SpellCheck' Plug 'vim-scripts/gmsh.vim' " Plug 'w0rp/ale' +Plug 'wellle/targets.vim' if has("nvim") Plug 'Shougo/deoplete.nvim' @@ -227,10 +228,12 @@ endif " Plugins interactions function! Multiple_cursors_before() let b:deoplete_disable_auto_complete = 1 + exe 'NeoCompleteLock' endfunction function! Multiple_cursors_after() let b:deoplete_disable_auto_complete = 0 + exe 'NeoCompleteUnlock' endfunction "" Vim variables |