Skip to content

Instantly share code, notes, and snippets.

@gwbischof
Created July 26, 2020 01:18
Show Gist options
  • Select an option

  • Save gwbischof/e6a2b6b9ab0e83d346fc847298c779a8 to your computer and use it in GitHub Desktop.

Select an option

Save gwbischof/e6a2b6b9ab0e83d346fc847298c779a8 to your computer and use it in GitHub Desktop.
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