More clean-ups

Better Cross-platform stuff

https://vimways.org/2018/from-vimrc-to-vim/
This commit is contained in:
2020-08-08 13:50:22 -07:00
parent 5a42a0c8e1
commit e12d093365
10 changed files with 140 additions and 126 deletions

13
plugin/gui.vim Normal file
View File

@@ -0,0 +1,13 @@
if has('gui_running')
set guioptions-=mTr " disable toolbar, menubar and scrollbar
if has('win32')
set guifont=Source_Code_Pro:h12:cANSI
endif
if has('osx')
set guifont=Source_Code_Pro:h13
endif
else
if(has('mouse'))
set mouse=a
endif
endif