1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Easily change window positions

This commit is contained in:
2018-07-18 10:22:38 +02:00
parent 96ddb648d1
commit 98dcac072f

8
.vimrc
View File

@@ -74,6 +74,14 @@ let NERDTreeIgnore = ['\.pyc$', 'tags']
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
" Easily change position of windows
"<c-w>gh: soft move left
"<c-w>gj: soft move down
"<c-w>gk: soft move up
"<c-w>gl: soft move right
Plugin 'andymass/vim-tradewinds'
" Rooter changes the working directory to the project root when you open a
" file or directory. Useful when using fzf for example.
Plugin 'airblade/vim-rooter'