systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
Log | Files | Refs | README | LICENSE

commit 02e080ea1b27d2b0a6a0d83926af2c0554e52da0
parent 2e4b891f97079f5c6969d9b55285ef0cfec717ec
Author: Remy Noulin <loader2x@gmail.com>
Date:   Sun, 29 Jul 2018 15:23:24 +0200

vim: change space to return in normal mode to insert, add F9/F10 to tab prev/next

dotfiles/.vimrc | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

Diffstat:
Mdotfiles/.vimrc | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc @@ -215,7 +215,12 @@ imap <F1> <Esc>`^ vmap <F1> <Esc>`^ imap ;; <Esc>`^ vmap ` <Esc> -nmap <Space> i +nmap <Return> i " paste last yanked nnoremap \ "0p nnoremap \| "0P + +nnoremap <F9> :tabprev<CR> +inoremap <F9> <c-o>:tabprev<CR> +nnoremap <F10> :tabnext<CR> +inoremap <F10> <c-o>:tabnext<CR>