aboutsummaryrefslogtreecommitdiff
path: root/experimental/vimrc-minimal-statusline
diff options
context:
space:
mode:
authorMax Christian Pohle2018-10-29 18:02:40 +0100
committerMax Christian Pohle2018-10-29 18:02:40 +0100
commiteb2e7959987ebc405c7a03060f259655e13f01d0 (patch)
tree773e2b638c135fb9861567585f4ce82db252df98 /experimental/vimrc-minimal-statusline
parent6284983fedcbdc54874d6e657047994b292be480 (diff)
downloadvim-karlmarks-eb2e7959987ebc405c7a03060f259655e13f01d0.tar.bz2
vim-karlmarks-eb2e7959987ebc405c7a03060f259655e13f01d0.zip
Further cleaning finally done
Diffstat (limited to 'experimental/vimrc-minimal-statusline')
-rw-r--r--experimental/vimrc-minimal-statusline30
1 files changed, 30 insertions, 0 deletions
diff --git a/experimental/vimrc-minimal-statusline b/experimental/vimrc-minimal-statusline
new file mode 100644
index 0000000..8a8656e
--- /dev/null
+++ b/experimental/vimrc-minimal-statusline
@@ -0,0 +1,30 @@
1set nocompatible
2
3
4filetype plugin indent on
5
6set omnifunc=syntaxcomplete#Complete
7
8syntax on
9
10
11set ts=2 sw=2 expandtab
12
13set ignorecase smartcase
14
15set hidden
16
17let g:status_fg="#ffffff"
18let g:status_bg="#000000"
19let g:status_sel='#ffff00'
20
21execute 'highlight! StatusLine'
22 \ .' guibg='.g:status_sel
23 \ .' guifg=NONE'
24
25execute 'highlight! User1 guibg='.g:status_bg
26execute 'highlight! User1 guifg='.g:status_fg
27
28execute 'highlight! User2 guibg='.g:status_sel
29execute 'highlight! User2 guifg='.g:status_bg
30colorscheme coderonline
..