aboutsummaryrefslogtreecommitdiff
path: root/experimental/vimrc-minimal-statusline
blob: 8a8656e644a00b226066ebc2d2af095d3e6facf3 (plain)
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
set nocompatible


filetype plugin indent on

set omnifunc=syntaxcomplete#Complete

syntax on


set ts=2 sw=2 expandtab

set ignorecase smartcase

set hidden

let g:status_fg="#ffffff"
let g:status_bg="#000000"
let g:status_sel='#ffff00'

execute 'highlight! StatusLine'
      \ .' guibg='.g:status_sel
      \ .' guifg=NONE'

execute 'highlight! User1 guibg='.g:status_bg
execute 'highlight! User1 guifg='.g:status_fg

execute 'highlight! User2 guibg='.g:status_sel
execute 'highlight! User2 guifg='.g:status_bg
colorscheme coderonline
..