-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgvimrc
More file actions
33 lines (29 loc) · 750 Bytes
/
gvimrc
File metadata and controls
33 lines (29 loc) · 750 Bytes
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
set t_Co=256
colorscheme moria
set background=dark
set anti
highlight ExtraWhitespace guibg=red
highlight LineNr guifg=#404040 guibg=#121212
highlight SignColumn guibg=#121212
" Don't show the toolbar
set guioptions-=T
" Don't show scrollbars
set guioptions-=r
set guioptions-=L
" Always show the sign column
set signcolumn=yes
" Disable audible bell
set vb
if has("gui_macvim")
set guifont=-monospace-Regular:h11.5
"set guifont=Monaco:h11.00
"set guifont=Consolas:h13.00
macmenu &File.New\ Tab key=<nop>
map <D-t> :CommandT<CR>
" TODO: Remove this
" This is a temp workaround for
" https://github.com/macvim-dev/macvim/issues/1333 until r175 comes out
"set guioptions-=e
elseif has("gui_gtk2")
set guifont=Monospace\ 8
endif