Created
May 22, 2014 17:02
-
-
Save mhammonds/e56f709d0bfacd386df3 to your computer and use it in GitHub Desktop.
MacVim Configuration
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
| " Customize font. I like Source Code Pro | |
| " URL - http://www.google.com/fonts/specimen/Source+Code+Pro | |
| " But sometimes use Anonymous Pro | |
| " URL - https://www.google.com/fonts/specimen/Anonymous+Pro | |
| set guifont=Source\ Code\ Pro:h16 | |
| " Disable cursor blinking | |
| set gcr=n:blinkon0 | |
| " Enable the Solarized Theme | |
| if has("gui_running") && has("gui_macvim") | |
| syntax enable | |
| set background=dark | |
| colorscheme solarized | |
| endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment