Added if statement for settings when using MacVim.

This commit is contained in:
Ryan Cavicchioni 2010-04-09 13:52:34 -05:00
parent f302111510
commit 2bc932cbb5

7
vimrc
View File

@ -4,6 +4,13 @@ if $MONO != "yes"
colorscheme darkburn " Set color scheme. colorscheme darkburn " Set color scheme.
set number " Enable line numbering. set number " Enable line numbering.
endif endif
if has("gui_running")
:colorscheme inkpot
":set guifont=Menlo\ Bold
":set guifont=Bitstream\ Vera\ Sans\ Mono\ Bold
:set guifont=DejaVu\ Sans\ Mono\ Bold
syntax on
endif
set nowrap " Disable word wrap. set nowrap " Disable word wrap.
set tabstop=4 " Set tab to 4 characters. set tabstop=4 " Set tab to 4 characters.
set smartindent " Enable smart indent. set smartindent " Enable smart indent.