-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui
32 lines (29 loc) · 799 Bytes
/
gui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
if has("gui_running")
if has("gui_gtk2")
" set guifont=Luxi\ Mono\ 12
elseif has("x11")
" Also for GTK 1
set guifont=*-lucidatypewriter-medium-r-normal-*-*-180-*-*-m-*-*
elseif has("gui_win32")
set guifont=Luxi_Mono:h12:cANSI
elseif has("gui_macvim")
set guifont=Monaco:h13
set guifont=MenloMensch0\ Regular:h13
set fuoptions=maxvert,maxhorz
" Mapping of Command-T MUST happen in ~/.gvimrc
endif
endif
if has("gui_running")
" color vividchalk
set go-=T "remove toolbar from GUI
set go-=m "remove menu from GUI
set go-=r "hide right scrollbar
set go-=L "hide left scrollbar
color ir_black
color jellybeans+
set cursorline
else
" http://www.vim.org/scripts/script.php?script_id=415
" let g:zenburn_high_Contrast=1
color zenburn
endif