-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgvimrc
38 lines (30 loc) · 1.23 KB
/
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
"-------------------------------------------------------------------------------
"-------------------------------------------------------------------------------
" GUI VIM Settings
"-------------------------------------------------------------------------------
"-------------------------------------------------------------------------------
"--- OS Specific {{{1
if has("gui_macvim")
set guifont=Droid\ Sans\ Mono\ Nerd\ Font\ Complete:h12 " set font and size
"set fuoptions=maxvert,maxhorz " fullscreen options (MacVim only), resized window when changed to fullscreen
elseif has("gui_gtk2")
set guifont=Monospace\ 8 " set font and size
elseif has("x11")
elseif has("gui_win32")
end
"}}}1
"--------------------------------------------------------------------------------
"--- General {{{1
syntax on
set hlsearch " Highlight search terms
set guioptions+=mT " show menu and toolbar
set guioptions-=e " never show tabline
set showtabline=0 " never show tabline
set anti " Antialias font
" Default Starting size of window
set columns=120
set lines=80
"}}}1
"---- Plugins {{{1
" these settings are gui-specific (clearly)
"}}}1