[vim] Move vim config files to vim directory

Vim now also supports XDG_CONFIG_HOME for its config files. So use that.
This commit is contained in:
Eryn Wells 2026-02-07 18:38:04 -08:00
parent c1fb9721bf
commit 50b0c20c89
4 changed files with 6 additions and 3 deletions

19
gvimrc
View file

@ -1,19 +0,0 @@
" List mode on here because the GUI has more color possibilities.
set nolist
if has('win32') || has('win64') || has('win32unix')
set guifont=Inconsolata:h18
elseif has('mac')
try
set guifont=Source\ Code\ Pro\ Light: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
call togglebg#map("<F10>")