Skip to content

Commit

Permalink
Adding pretty font support for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
spf13 committed Mar 6, 2013
1 parent d533a00 commit dda3fe4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,10 @@
set lines=40 " 40 lines of text instead of 24
if has("gui_gtk2")
set guifont=Andale\ Mono\ Regular\ 16,Menlo\ Regular\ 15,Consolas\ Regular\ 16,Courier\ New\ Regular\ 18
else
else has("gui_mac")
set guifont=Andale\ Mono\ Regular:h16,Menlo\ Regular:h15,Consolas\ Regular:h16,Courier\ New\ Regular:h18
elseif has("gui_win32")
set guifont=Andale_Mono:h10,Menlo:h10,Consolas:h10,Courier_New:h10
endif
if has('gui_macvim')
set transparency=5 " Make the window slightly transparent
Expand Down

0 comments on commit dda3fe4

Please sign in to comment.