Move .vimrc and .gvimrc to correct location.

This commit is contained in:
2018-01-27 21:17:34 -06:00
parent 8b832f1023
commit 31f729226b
2 changed files with 0 additions and 0 deletions

18
.gvimrc Normal file
View File

@ -0,0 +1,18 @@
if has("win32")
"set guifont=Droid_Sans_Mono:h9:cANSI
elseif has("mac")
"set guifont=Menlo\ Bold
"set guifont=Bitstream\ Vera\ Sans\ Mono\ Bold
"set guifont=DejaVu\ Sans\ Mono\ Bold
set guifont=Fira\ Mono\ OT:h12
endif
" general gui settings
set guioptions=egt
colorscheme gruvbox
syntax on
" If it exists, include user's local vim config
if filereadable(expand("~/.gvimrc.local"))
source ~/.gvimrc.local
endif