Created
March 13, 2016 17:54
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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