dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit a333c7dd692450d7061e0b47f55dcb78e869f63a
parent b360af8a1a87001e2bc01d964b9c765785463738
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 22 Aug 2018 10:45:00 +0200

Vim bindings for new/close tab

Diffstat:
Mdotfiles/vim-config/map.vimrc | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/dotfiles/vim-config/map.vimrc b/dotfiles/vim-config/map.vimrc @@ -40,3 +40,7 @@ nnoremap zh mzzt10<c-u>`z " Quick switch to shell noremap <C-s> :sh<cr> + +" Tab mappings +nnoremap <C-t> :tabnew<cr> +nnoremap <C-c> :tabclose<cr>