Skip to content

Instantly share code, notes, and snippets.

@ericchiang
Created July 24, 2018 14:44
Show Gist options
  • Save ericchiang/98e205d0fb8bfec622b247e4a0dd7290 to your computer and use it in GitHub Desktop.
Save ericchiang/98e205d0fb8bfec622b247e4a0dd7290 to your computer and use it in GitHub Desktop.
filetype plugin indent on " activate filetype plugins
set backspace=2 " backspace in insert mode works like normal editor
" set autoindent " auto indenting
set number " line numbers
colorscheme default " colorscheme
set nobackup " get rid of anoying ~file
set clipboard=unnamed " use system clipboard for copying
set shiftwidth=4 " default shift width
set expandtab " expand tabs to spaces
set tabstop=4 " set tabwidth to 4
set noeol " no new line at end of file
syntax off " syntax highlighting
highlight clear LineNr " no highlighting of line number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment