Added windows font
This commit is contained in:
parent
2091a877b1
commit
3a2529b801
1 changed files with 13 additions and 2 deletions
|
@ -1,8 +1,19 @@
|
||||||
set cmdheight=1
|
set cmdheight=1
|
||||||
nmap <leader>q :q<cr>
|
nmap <leader>q :q<cr>
|
||||||
|
|
||||||
|
if has("mac") || has("macunix")
|
||||||
|
set gfn=Hack:h14,Source\ Code\ Pro:h15,Menlo:h15
|
||||||
|
elseif has("win16") || has("win32")
|
||||||
|
set gfn=Source_Code_Pro_Medium:h12,Bitstream\ Vera\ Sans\ Mono:h11
|
||||||
|
elseif has("gui_gtk2")
|
||||||
|
set gfn=Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11
|
||||||
|
elseif has("linux")
|
||||||
set gfn=Source\ Code\ Pro\ for\ Powerline\ Medium\ 11
|
set gfn=Source\ Code\ Pro\ for\ Powerline\ Medium\ 11
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
elseif has("unix")
|
||||||
|
set gfn=Monospace\ 11
|
||||||
|
endif
|
||||||
|
|
||||||
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" => Nerd Tree Config
|
" => Nerd Tree Config
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
|
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
|
||||||
|
|
Loading…
Reference in a new issue