-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgvimrc
74 lines (51 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
scriptencoding utf-8
" Filename: /etc/vim/vimrc
" Purpose: setup file for the VIM editor
" Author: (c) Andreas Niederl <[email protected]>
" License: This file is licensed under the GPL v2.
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" include gentoo specific gvimrc (with sane defaults) if available {{{1
if filereadable(expand("$ETC_VIM/gvimrc.gentoo"))
source $ETC_VIM/gvimrc.gentoo
endif
" Basic Settings {{{1
"===============================================================================
" hide mouse cursor when typing
set mousehide
" show line numbers
set number
" remove menu bar
set guioptions-=m
" remove icon toolbar
set guioptions-=T
" default font
"set guifont=DejaVu\ Sans\ Mono\ 11
" powerline/airline font
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 11
" always show tabline
set showtabline=2
"===============================================================================
" Colors {{{1
"===============================================================================
" white on black
"highlight Normal guifg=white guibg=black
" green bold cursor
"highlight Cursor guibg=Green guifg=NONE
" cyan for :lmap
"highlight lCursor guibg=Cyan guifg=NONE
" yellow visual mode
"highlight Visual guifg=black guibg=yellow gui=none
" cyan folds
"highlight Folded guifg=black guibg=cyan
" status line colors
"highlight StatusLine guibg=white guifg=red
"highlight StatusLineNC guibg=yellow guifg=blue
colorscheme fruity
" cursor line
highlight CursorLine guibg=Gray20
set cursorline
"===============================================================================
" $HOME/.gvimrc.local {{{1
if filereadable($HOME/'.gvimrc.local')
source $HOME/'.gvimrc.local'
endif