Update my_configs.vim
This commit is contained in:
parent
92e849877b
commit
261ac94577
1 changed files with 11 additions and 1 deletions
|
@ -7,7 +7,17 @@ set noshowmode
|
|||
" Block can move outside of bounds"
|
||||
set virtualedit=block
|
||||
|
||||
set guifont=Source\ Code\ Pro:h11
|
||||
" Set font according to system
|
||||
if has("mac") || has("macunix")
|
||||
set guifont=Source\ Code\ Pro:h15,Menlo:h15
|
||||
elseif has("win16") || has("win32")
|
||||
set guifont=Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11
|
||||
elseif has("linux")
|
||||
set guifont=Source\ Code\ Pro\ h12,Bitstream\ Vera\ Sans\ Mono:h11
|
||||
elseif has("unix")
|
||||
set guifont=Monospace\ 11
|
||||
endif
|
||||
" set guifont=Source\ Code\ Pro\ 11
|
||||
|
||||
nmap <leader>rb :call DeleteTrailingWS()<cr>
|
||||
|
||||
|
|
Loading…
Reference in a new issue