Created
July 26, 2020 01:18
-
-
Save gwbischof/e6a2b6b9ab0e83d346fc847298c779a8 to your computer and use it in GitHub Desktop.
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 expandtab | |
| set number | |
| set cursorline | |
| set incsearch | |
| set hlsearch | |
| highlight RedundantSpaces ctermbg=red guibg=red | |
| match RedundantSpaces /\s\+$/ | |
| autocmd BufWritePre * :%s/\s\+$//e | |
| set tabstop=4 softtabstop=0 expandtab shiftwidth=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment