Skip to content

Instantly share code, notes, and snippets.

@mistercrunch
Last active July 29, 2016 21:06
Show Gist options
  • Save mistercrunch/ca04010fa9bb6b0ed57c to your computer and use it in GitHub Desktop.
Save mistercrunch/ca04010fa9bb6b0ed57c to your computer and use it in GitHub Desktop.
vimrc
filetype plugin indent on
set colorcolumn=80
set nobackup
set nowritebackup
set noswapfile
set tabstop=4
set shiftwidth=4
set expandtab
set softtabstop=4
set autoindent
set smarttab
set smartindent
set smartcase
filetype indent on
filetype on
filetype plugin on
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment