commit 417dfbe72b9c2fbeafd2f3f5b2a7e216feb16cd4
parent 6ded03198a2d9a30e6c07d0a9d0da5dc0ddd7ce5
Author: Chris Bracken <cbracken@google.com>
Date: Thu, 6 Sep 2012 09:54:24 -0700
Default guifont to Menlo on OS X, Ubuntu Mono otherwise.
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.vim/.vimrc b/.vim/.vimrc
@@ -33,7 +33,11 @@ if &t_Co > 2 || has("gui_running")
syntax on
set background=dark
colorscheme blackboard
- set guifont=Menlo:h12
+ if has("gui_macvim")
+ set guifont=Menlo:h12
+ elseif has("unix")
+ set guifont=Ubuntu\ Mono\ 12
+ endif
" Highlight trailing whitespace
if has("autocmd")