Skip to content

Instantly share code, notes, and snippets.

@uditagarwal97
Last active August 9, 2023 17:05
Show Gist options
  • Select an option

  • Save uditagarwal97/81950608c2132c501575cacd3239664b to your computer and use it in GitHub Desktop.

Select an option

Save uditagarwal97/81950608c2132c501575cacd3239664b to your computer and use it in GitHub Desktop.
My Vim Config
set tabstop=2
set shiftwidth=2
set expandtab
set smarttab
set hlsearch
set colorcolumn=80
highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/
set viminfo='50,<1000,s100,h
set encoding=utf-8
autocmd BufWritePre * :%s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment