-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgvimrc
More file actions
35 lines (30 loc) · 735 Bytes
/
gvimrc
File metadata and controls
35 lines (30 loc) · 735 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
33
34
35
scriptencoding utf-8
" Window:"{{{
if has('vim_starting')
if has('win32') || has('win64')
gui
set transparency=248
elseif has('mac')
set transparency=5
endif
endif
" Don't show toolbar & menubar
set guioptions& guioptions-=T guioptions-=m
" Switch off cursor blinking.
set guicursor& guicursor+=a:blinkon0
" Setting of colorscheme.
" Don't override colorscheme.
colorscheme japanesque
highlight Conceal NONE
highlight Conceal guifg=#828282
highlight Cursor NONE
highlight Cursor guibg=#268bd2 guifg=#ffffff
"}}}
" Mouse:"{{{
" Show popup menu if right click.
set mousemodel=popup
" Don't focus the window when the mouse pointer is moved.
set nomousefocus
" Hide mouse pointer on insert mode.
set mousehide
"}}}