Added status bar and settings

This commit is contained in:
Serĉanto de Scio 2016-03-28 16:40:36 +10:00
parent 0c9905fad5
commit 5c9481fa8e

6
.vimrc
View file

@ -8,6 +8,12 @@ set expandtab
syntax enable
match ErrorMsg '\s\+$'
" Set up the status line so it's colored and always on
set laststatus=2
highlight StatusLine cterm=none ctermbg=black ctermfg=green
highlight StatusLineNC cterm=none ctermbg=black ctermfg=green
highlight VertSplit cterm=none ctermbg=black ctermfg=green
" Removes trailing spaces:
function! TrimWhiteSpace()
%s/\s\+$//e