vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

commit c8c8fe68a21e9feb5bee30866aaca350f23efbe1
parent 7f16589c02dc43dc0ebd4cbea354bd80a7a1e73a
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:
M.vimrc | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.vimrc b/.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")