Last active
August 29, 2015 13:57
-
-
Save jstrassburg/9838347 to your computer and use it in GitHub Desktop.
My .vimrc
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
colorscheme koehler | |
set number | |
set ignorecase | |
set shiftwidth=4 softtabstop=4 | |
set autoindent smartindent | |
set smarttab | |
set foldmethod=indent foldlevel=99 | |
filetype indent plugin on | |
syntax on | |
map <F1> :!git status<ENTER> | |
map <F2> :!git diff<ENTER> | |
map <F3> :!git add --all;git commit -m " | |
map <F4> :!git push -u origin master<ENTER> | |
map <F7> :tabp<ENTER> | |
map <F8> :tabn<ENTER> | |
map <F9> :tabe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment