aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-27 12:52:35 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-27 12:52:35 +1200
commit4d33458950a6a870d55ed24c89627cea83515800 (patch)
tree6f7f88e1fab50ad71d3509413cb8c97496319a31
parentRestore 'esckeys' option existence check (diff)
downloaddotfiles-4d33458950a6a870d55ed24c89627cea83515800.tar.gz
dotfiles-4d33458950a6a870d55ed24c89627cea83515800.zip
Don't load matchit.vim package if using Neovim
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 7cd795a5..df2219d4 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -279,7 +279,7 @@ nnoremap \z :<C-U>setlocal spelllang=en_nz spelllang?<CR>
if &loadplugins
" Add packaged matchit.vim, if supported
- if has('packages')
+ if has('packages') && !has('nvim')
packadd! matchit
endif