diff --git a/.vimrc b/.vimrc index d4173bf..655977b 100644 --- a/.vimrc +++ b/.vimrc @@ -83,12 +83,15 @@ let NERDTreeIgnore = ['\.pyc$', 'tags'] autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif -" Easily change position of windows -"gh: soft move left -"gj: soft move down -"gk: soft move up -"gl: soft move right -Plugin 'andymass/vim-tradewinds' +if has('patch-8.0-1364') + " Easily change position of windows + " Requires vim 8.0.1364 or neovim (exact version uncertain). + "gh: soft move left + "gj: soft move down + "gk: soft move up + "gl: soft move right + Plugin 'andymass/vim-tradewinds' +endif " Rooter changes the working directory to the project root when you open a