Ubuntu Pastebin

Paste from michal at Tue, 27 Jan 2015 15:16:48 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
set expandtab
set tabstop=8
set softtabstop=4
set shiftwidth=4
set autoindent
set bg=dark
:syntax on

filetype plugin on
set ofu=syntaxcomplete#Complete

highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
autocmd InsertLeave * match ExtraWhitespace /\s\+$/
autocmd BufWinLeave * call clearmatches()
Download as text