januswel / dotfiles

software setting files

This URL has Read+Write access

dotfiles / .gvimrc
100644 30 lines (21 sloc) 0.868 kb
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
" .gvimrc
" setting file for gvim
" this contains visual settings only, use with .vimrc
"
" author janus_wel <janus.wel.3@gmail.com>
" Last Change: 2009/02/03 05:35:49.
 
" options -----------------------------------------------------------------
" display & information
set guioptions=er " show tab like system-native and right scroll bar only
set laststatus=2 " show status line always
set cmdheight=1 " height of command-line is 1 row
 
 
" syntax highlight --------------------------------------------------------
syntax enable " use syntax highlight
 
" color scheme: Janus.vim
colorscheme Janus " my color scheme
 
 
" script ------------------------------------------------------------------
" change cursor color to red on IME mode
if has('multi_byte_ime') || has('xim')
    highlight CursorIM guibg=Red guifg=NONE
endif
 
 
" vim: sw=4 sts=4 ts=4 et