diff options
author | Urbain Vaes <urbain@vaes.uk> | 2017-05-01 18:43:58 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2017-05-01 18:43:58 +0100 |
commit | d093fa1693da1e178fafb64576c335000cfb600f (patch) | |
tree | 51213423f0d345f6f663b6e38a0576c532c2c874 /vim | |
parent | 4f905edfe4861d4dda26567f254dcf46e5eb4c60 (diff) | |
parent | 9600f2f2037429da7179b2399347b1857028de85 (diff) |
Merge branch 'master' of urbainvaes.com:public/dotfiles
Diffstat (limited to 'vim')
-rw-r--r-- | vim/.gitignore | 1 | ||||
-rw-r--r-- | vim/.vimrc | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/vim/.gitignore b/vim/.gitignore index c0f6ef5..f962736 100644 --- a/vim/.gitignore +++ b/vim/.gitignore @@ -1 +1,2 @@ .vim/autoload +.vim/vim-plug @@ -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' @@ -210,7 +211,7 @@ let g:vimtex_fold_enabled=0 let g:vimtex_view_method='zathura' let g:vimtex_latexmk_continuous=1 let g:vimtex_quickfix_mode=2 -let g:vimtex_latexmk_build_dir='build' +" let g:vimtex_latexmk_build_dir='build' let g:vimtex_latexmk_progname='nvr' " YouCompleteMe @@ -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 |