-
Notifications
You must be signed in to change notification settings - Fork 3
/
dot.gvimrc
72 lines (56 loc) · 1.31 KB
/
dot.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
" gvimrc
" Basic "{{{1
"window size
set columns=97
set lines=34
"window positon
winpos 100 55
"font
set guifont=Monospace\ 14
"disable blink
set guicursor=a:blinkoff0
"disable bell
set noerrorbells
set novisualbell
set visualbell t_vb=
" Disable useless bars"{{{1
"toolbar
set guioptions-=T
"menuebar
set guioptions-=m
"scrollbar
set guioptions-=r
set guioptions-=R
set guioptions-=l
set guioptions-=L
" Color "{{{1
colorscheme denim
"colorscheme less
"colorscheme default
"fold color
hi Folded guibg=bg guifg=fg gui=NONE
hi FoldColumn guibg=bg guifg=fg gui=italic
"highlight zenkaku space
function! ZenkakuSpaceHighlight()
syntax match ZenkakuSpace " " display containedin=ALL
highlight ZenkakuSpace guibg=LightCyan
endf
if has("syntax")
syntax on
augroup invisible
autocmd! invisible
autocmd BufNew,BufRead * call ZenkakuSpaceHighlight()
augroup END
endif
" Popup Menu
hi Pmenu guibg=#191919 guifg=#f5f5f5 gui=NONE
hi PmenuSel guibg=#f5f5f5 guifg=#191919 gui=NONE
hi PmenuSbar guibg=#808080 guifg=NONE gui=NONE
hi PmenuThumb guibg=#ffffff guifg=NONE gui=NONE
" Source local rc file"{{{1
if filereadable($HOME . '/.gvimrc_local')
source $HOME/.gvimrc_local
elseif filereadable($HOME . '/_gvimrc_local')
source $HOME/_gvimrc_local
endif
" vim:set ft=vim foldmethod=marker: