dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit eb7b67c3162d1b41a506fdc7596ac8aaf603a5c5
parent ce9504a6ae7d803f10eb1a68213d7787ff43b2a7
Author: Chris Bracken <cbracken@google.com>
Date:   Wed, 14 Dec 2011 13:22:18 -0800

Only show tabs if more than one open

Diffstat:
M.vim/.vimrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.vim/.vimrc b/.vim/.vimrc @@ -49,7 +49,7 @@ set mouse=a map <silent> <S-F1> :if g:toggleMenu == 1<CR>:set guioptions-=m<CR>:let g:toggleMenu = 0<CR>:else<CR>:set guioptions+=m<CR>:let g:toggleMenu = 1<CR>:endif<CR> if has("gui_running") - set showtabline=2 " Always show tabs + set showtabline=1 " Show tabs only if > 1 open set guioptions-=T " Hide toolbar set guioptions-=m " Hide menu bar endif