Skip to content

Instantly share code, notes, and snippets.

View Saul-Dickson's full-sized avatar

INVALID-SYNTAX Saul-Dickson

View GitHub Profile
@romainl
romainl / toolong.vim
Last active April 25, 2023 08:04
Highlight characters after line 80
augroup TooLong
autocmd!
autocmd winEnter,BufEnter * call clearmatches() | call matchadd('ColorColumn', '\%>80v', 100)
augroup END