Skip to content

Instantly share code, notes, and snippets.

@aussielunix
Created May 19, 2022 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aussielunix/07f0b7e5eadc193139291e3e9bbf0c53 to your computer and use it in GitHub Desktop.
Save aussielunix/07f0b7e5eadc193139291e3e9bbf0c53 to your computer and use it in GitHub Desktop.
basic vimrc
syntax on
filetype plugin indent on
set shiftwidth=2
set tabstop=2
set nocompatible
set expandtab
set smarttab
set autoindent
set nu
set ruler
set background=light
set backspace=indent,eol,start
set mouse=
set ttymouse=
" setup folding
set foldenable
set foldmethod=syntax
" highlight trailing whitespace
:highlight ExtraWhitespace ctermbg=red guibg=red
:match ExtraWhitespace /\s\+$/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment