Skip to content

Instantly share code, notes, and snippets.

@aubsec
Last active February 11, 2016 19:56
Show Gist options
  • Save aubsec/ee5d74ce105128887329 to your computer and use it in GitHub Desktop.
Save aubsec/ee5d74ce105128887329 to your computer and use it in GitHub Desktop.
vimrc configuration
syntax on
filetype indent plugin on
set tabstop=8
set expandtab
set shiftwidth=4
set softtabstop=4
set number
set background=dark
set tw=79
set fo+=t
augroup vimrc_autocmds
autocmd BufEnter * highlight OverLength ctermbg=black guibg=#592929
autocmd BufEnter * match OverLength /\%74v.*/
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment