Last active
February 6, 2018 15:03
-
-
Save evanxg852000/64ea086dc677dc945568b2345aa353ae to your computer and use it in GitHub Desktop.
Basic vimrc for https://github.com/amix/vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set number | |
colorscheme deus | |
:set guioptions-=m "remove menu bar | |
if has("gui_running") | |
if has("gui_gtk2") | |
set guifont=Monospace\ 13 | |
elseif has("gui_macvim") | |
set guifont=Menlo\ Regular:h14 | |
elseif has("gui_win32") | |
set guifont=Consolas:h13:cANSI | |
elseif has("unix") | |
set guifont=Droid\ Sans\ Mono\ 13 | |
endif | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment