Skip to content

Instantly share code, notes, and snippets.

@rjz
Created June 20, 2014 15:51
Show Gist options
  • Save rjz/f987f97c3f6146f1243f to your computer and use it in GitHub Desktop.
Save rjz/f987f97c3f6146f1243f to your computer and use it in GitHub Desktop.
Vim text-wrapping and border
" Set text wrapping at the specified column
function Widthifier(col)
let &l:textwidth=a:col
let &l:colorcolumn=a:col+1
let &l:tw=a:col
endfunction
" line @ 80 chars for js/coffee files
autocmd bufreadpre *.js call Widthifier(80)
autocmd bufreadpre *.coffee call Widthifier(80)
" pick your favorite color
highlight ColorColumn ctermbg=238
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment