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

Tab navigation

This commit is contained in:
2015-11-09 16:10:12 +01:00
parent e3c3d3b9ed
commit dfed82d936

5
.vimrc
View File

@@ -243,6 +243,11 @@ endif
" happens when pasting into the current file)
set pastetoggle=<F10>
" Tab navigation
nmap <c-Up> :tabnew<CR>
nmap <c-Right> :tabnext<CR>
nmap <c-Left> :tabprevious<CR>
" Prettify json and javascript
map <Leader>jt <Esc>:%!json_xs -f json -t json-pretty<CR>