Skip to content

Instantly share code, notes, and snippets.

@saralilyb
Created March 13, 2016 17:54
Show Gist options
  • Save saralilyb/09843b47a874dc242ccf to your computer and use it in GitHub Desktop.
Save saralilyb/09843b47a874dc242ccf to your computer and use it in GitHub Desktop.
Make vim feel like this century with hard tabs as 2 spaces, soft wrap at 80 columns, and hanging intents on soft wrapped text.
set linespace=4
set noexpandtab
set wrap
set linebreak
set breakindent
set briopt=shift:2
set shiftwidth=2
set tabstop=2
set textwidth=79
set columns=80
autocmd VimResized * set columns=80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment