From f2e01d7e513067ddb57c75f6e38cdcf434946cf8 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 22 Oct 2018 00:02:58 +0200 Subject: Major refactoring for version 2.0 vim-plug has been removed and replaced with Vims internal bundle mechanism. But I already noticed, that there is also GLVM now and started trying that as well. --- vimrc-minimal-statusline | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 vimrc-minimal-statusline (limited to 'vimrc-minimal-statusline') diff --git a/vimrc-minimal-statusline b/vimrc-minimal-statusline new file mode 100644 index 0000000..8a8656e --- /dev/null +++ b/vimrc-minimal-statusline @@ -0,0 +1,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 -- cgit v1.2.3