Last active
December 23, 2015 07:29
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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