1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 17:45:00 +08:00

Made ir-black the default color scheme

Switched away from using gui tabs and made some changes to the default text tab via set_tabline.vim plugin.

Added a new mapping <leader>t<leader> that can open a specific tab number.
This commit is contained in:
amix
2012-07-02 18:57:21 -04:00
parent f43b19edf3
commit 3c8e295105
8 changed files with 160 additions and 276 deletions

View File

@ -133,7 +133,7 @@ set background=dark
" Set extra options when running in GUI mode
if has("gui_running")
set guioptions-=T
set guioptions+=e
set guioptions-=e
set t_Co=256
set guitablabel=%M\ %t
endif
@ -216,6 +216,7 @@ map <leader>tn :tabnew<cr>
map <leader>to :tabonly<cr>
map <leader>tc :tabclose<cr>
map <leader>tm :tabmove
map <leader>t<leader> :tabnext
" Opens a new tab with the current buffer's path
" Super useful when editing files in the same directory