Skip to content

Instantly share code, notes, and snippets.

@dobriak
Last active December 23, 2015 07:29
Show Gist options
  • Save dobriak/6600826 to your computer and use it in GitHub Desktop.
Save dobriak/6600826 to your computer and use it in GitHub Desktop.
My vimrc file. Autoindentation and tabbing, editting new files in tabs with f7/f8 back and forth (:tab e <file> to open in a tab)
:set autoindent
:set shiftwidth=2
:set tabstop=2
:set expandtab
:map <F7> :tabp<CR>
:map <F8> :tabn<CR>
:set pastetoggle=<F2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment