-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgvimrc
43 lines (33 loc) · 764 Bytes
/
gvimrc
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
33
34
35
36
37
38
39
40
41
42
43
if has("gui_macvim")
set guifont=Monaco:h12
set antialias
command HugeFont set guifont=Monaco:h18<CR>
command BigFont set guifont=Monaco:h14<CR>
command NormalFont set guifont=Monaco:h12<CR>
elseif has("gui_win32")
"set guifont=Lucida_Console:h10
set guifont=Consolas:h11
else
set guifont=Andale\ Mono\ 10
endif
" Remove menubar
set guioptions-=T
" Remove toolbar
"set guioptions-=m
set numberwidth=5
set columns=87
set lines=57
if exists('&macatsui')
set nomacatsui
endif
set background=dark
colorscheme molokai
"set background=light
"colorscheme default
"set background=light
"colorscheme pyte
"set background=light
"colorscheme osx_like
if filereadable(expand("~/.vim/gvimrc.local"))
source ~/.vim/gvimrc.local
endif