From 038300af873d7e5d62bbbe1f0eb9b7259e91823b Mon Sep 17 00:00:00 2001 From: Georgi Gardev Date: Sun, 7 Jul 2013 13:50:53 +0300 Subject: [PATCH] Minor changes Removed the startup screen, added new shortcut for reloading the NERDTree, changed some other shortcuts --- .vimrc | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) 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