From 3b01a63d518af3ae89de074254a07081061f4dc2 Mon Sep 17 00:00:00 2001 From: Huaishun Hu Date: Mon, 27 Nov 2017 13:41:25 +0800 Subject: [PATCH] update vimrc --- my_configs.vim | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/my_configs.vim b/my_configs.vim index cb48458e..b7d80cd4 100644 --- a/my_configs.vim +++ b/my_configs.vim @@ -1,13 +1,13 @@ if has("mac") || has("macunix") - set gfn=Hack:h14,Source\ Code\ Pro:h14,Menlo:h14 + set gfn=Hack:h10,Source\ Code\ Pro:h10,Menlo:h10 elseif has("win16") || has("win32") - set gfn=Hack:h14,Source\ Code\ Pro:h14,Bitstream\ Vera\ Sans\ Mono:h14 + set gfn=Hack:h10,Source\ Code\ Pro:h10,Bitstream\ Vera\ Sans\ Mono:h10 elseif has("gui_gtk2") - set gfn=Hack\ 14,Source\ Code\ Pro\ 14,Bitstream\ Vera\ Sans\ Mono\ 14 + set gfn=Hack\ 10,Source\ Code\ Pro\ 10,Bitstream\ Vera\ Sans\ Mono\ 10 elseif has("linux") - set gfn=Hack\ 14,Source\ Code\ Pro\ 14,Bitstream\ Vera\ Sans\ Mono\ 14 + set gfn=Hack\ 10,Source\ Code\ Pro\ 10,Bitstream\ Vera\ Sans\ Mono\ 10 elseif has("unix") - set gfn=Monospace\ 14 + set gfn=Monospace\ 10 endif " move around tabs. conflict with the original screen top/bottom @@ -25,6 +25,8 @@ map :execute 'tabmove ' . (tabpagenr()+1) map :tabnew " close tab map :tabclose +" show all open tabs +map :tabs " toggle NerdTree map :NERDTreeToggle