From 3175b2bcd7e5e423700bfe1fd9ceb9e9e98673e8 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 23 Jan 2017 21:01:32 -0800 Subject: [PATCH] Add colorcolumn. --- dotfiles/vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotfiles/vimrc b/dotfiles/vimrc index 72725b4..59a7123 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -145,3 +145,7 @@ autocmd Filetype votl setlocal sts=4 " Highlight whitespace at end of file highlight ExtraWhitespace ctermbg=red guibg=red autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ containedin=ALL + +" Color column at end of lines +set colorcolumn=+1 +highlight ColorColumn ctermbg=lightgrey guibg=lightgrey