-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgvimrc
58 lines (52 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
" solarized {
" set background=light " or light
"color xoria256
" color solarized " load a colorscheme
" let g:solarized_termtrans=0
" let g:solarized_termcolors=256
" let g:solarized_contrast="high"
" let g:solarized_visibility="low"
" set t_Co=256
" }
" Set up the gui cursor to look nice
set guicursor=n-v:block-Cursor-blinkwait1000-blinkoff150-blinkon1000
set guicursor+=c:ver25-Cursor
set guicursor+=ve:ver35-Cursor
set guicursor+=o:hor50-Cursor
set guicursor+=i-ci:ver25-Cursor
set guicursor+=r-cr:hor10-Cursor
set guicursor+=sm:block-Cursor-blinkwait175-blinkoff150-blinkon175
" highlight Cursor guifg=NONE guibg=NONE
" highlight Visual guifg='white' guibg='#b58900'
highlight Visual guifg='white' guibg='#DE1D5C'
highlight Search guibg=NONE guifg='#cb4b16'
highlight CursorLineNr guifg='#af8700' guibg=NONE
" set the gui options the way I like
set guioptions=ac
"set guioptions-=m
"set guioptions-=T
" set guifont=Monospace\ 9
" set guifont=Monaco\ for\ Powerline\ 9
" set guifont=Inconsolata\ for\ Powerline\ Medium\ 10
" set guifont=Mensch\ for\ Powerline\ Medium\ 9
" set guifont=Source\ Code\ Pro\ for\ Powerline\ 9
" set guifont=RobotoMono\ 10
set guifont=GohuGohuFont\ 10
" set guifont=GohuGohuFont\ 8
set guioptions-=T
"colorscheme xoria256
if has("gui_running")
if !exists("g:vimrcloaded")
winpos 0 0
if ! &diff
winsize 130 90
else
winsize 227 90
endif
let g:vimrcloaded = 1
endif
endif
:nohls
if filereadable(expand("~/.gvimrc.local"))
source ~/.gvimrc.local
endif