-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgvimrc
28 lines (24 loc) · 779 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
set guioptions-=m " Turn off menubar
set guioptions-=T " Turn off toolbar
set guioptions-=r " Turn off right-hand scrollbar
set guioptions-=R " Turn off right-hand scrollbar when split
set guioptions-=L " Turn off left-hand scrollbar
set guioptions-=l " Turn off left-hand=scrollbar when split
set guicursor+=a:blinkon0 " Turn off blinking cursor
if has("gui_running")
if has("win32") || has('win64')
set guifont=Consolas:h13
elseif has("gui_macvim")
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline:h13
else
" assume Linux
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 10
endif
endif
if has("autocmd")
" Automatically resize splits when resizing MacVim window
autocmd VimResized * wincmd =
endif
set lines=60
set columns=140
set mousemodel=popup