diff --git a/.vimrc b/.vimrc index 36c4b9c..75c4d04 100644 --- a/.vimrc +++ b/.vimrc @@ -4,6 +4,7 @@ filetype on filetype plugin on set nocompatible set autoread +set shortmess=atI " Start scrolling when we're 8 lines from the bottom set scrolloff=8 @@ -13,6 +14,7 @@ set encoding=utf-8 set guifont=Menlo\ for\ Powerline\ 10 set linespace=2 + " Set colors colorscheme Tomorrow set t_Co=256 @@ -55,7 +57,7 @@ set guioptions-=T set guioptions-=m> " Use Ctrl+F2 to toggle gui -map :if &guioptions =~# 'T' +map :if &guioptions =~# 'T' \set guioptions-=T \set guioptions-=m \else @@ -146,6 +148,7 @@ Bundle 'Nibble' " NERDTree map :NERDTreeToggle +map :NERDTree " Tagbar map :TagbarToggle @@ -166,10 +169,8 @@ let g:multi_cursor_skip_key='' let g:multi_cursor_quit_key='' " Tabular -if exists(":Tabularize") - nmap a= :Tabularize /= - vmap a= :Tabularize /= - nmap a: :Tabularize /:\zs - vmap a: :Tabularize /:\zs -endif +nmap a= :Tabularize /= +vmap a= :Tabularize /= +nmap a: :Tabularize /:\zs +vmap a: :Tabularize /:\zs