Move GUI stuff to gvimrc; fix local vimrc include
This commit is contained in:
parent
82b3bb4067
commit
655c5519f4
2 changed files with 33 additions and 30 deletions
17
gvimrc
Normal file
17
gvimrc
Normal file
|
@ -0,0 +1,17 @@
|
|||
set bg=light
|
||||
set cursorline
|
||||
|
||||
if has('win32') || has('win64') || has('win32unix')
|
||||
set guifont=Inconsolata:h18
|
||||
elseif has('mac')
|
||||
try
|
||||
set guifont=Source\ Code\ Pro:h13
|
||||
catch
|
||||
set guifont=Menlo:h11
|
||||
endtry
|
||||
elseif has('linux')
|
||||
set guifont=Inconsolata\ 14
|
||||
endif
|
||||
|
||||
set guioptions-=T " turn off toolbar
|
||||
set guioptions-=m " turn off menubar
|
Loading…
Add table
Add a link
Reference in a new issue