-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gvimrc
32 lines (26 loc) · 1014 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
" --------------------------------------------------
" Disable scrollbars, etc
" --------------------------------------------------
set guioptions=eg
" --------------------------------------------------
" Basic font, colors
" --------------------------------------------------
set guifont=Hack:h14
" --------------------------------------------------
" Perfectly black background
" --------------------------------------------------
highlight Normal guibg=Black
" --------------------------------------------------
" Hide the ~ symbols where there's no text
" --------------------------------------------------
highlight NonText guibg=Black guifg=Black
" --------------------------------------------------
" Line number formatting
" --------------------------------------------------
highlight LineNr guibg=#2D2A30
highlight LineNr guifg=#787C81
set numberwidth=3
" --------------------------------------------------
" No blinky
" --------------------------------------------------
set guicursor+=a:blinkon0