Created
May 23, 2013 16:33
-
-
Save spencerdeinum/5637404 to your computer and use it in GitHub Desktop.
gvim
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 the font for gvim | |
if has('gui_running') | |
" Don't show scroll bars in the GUI | |
set guioptions-=L | |
set guioptions-=r | |
set guioptions-=m | |
set guioptions-=T | |
" Set colorscheme for gvim | |
" colorscheme zen-and-art | |
colorscheme Tomorrow-Night | |
" Set font for gvim | |
set guifont=Monaco\ 11 | |
set columns=212 | |
set lines=56 | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment