diff --git a/.vimrc b/.vimrc index c420ba3..01e1633 100644 --- a/.vimrc +++ b/.vimrc @@ -16,6 +16,12 @@ set expandtab " Set to show invisibles (tabs & trailing spaces) & their highlight color set list listchars=tab:»\ ,trail:· +function! Highlight() + highlight OverLength ctermbg=red ctermfg=white guibg=#592929 + match OverLength /\%81v.\+/ +endfunction +nnoremap _h :call Highlight() + """""""""""""""""""" " GnuPG Extensions "