Skip to content

Instantly share code, notes, and snippets.

@jstrassburg
Last active August 29, 2015 13:57
Show Gist options
  • Save jstrassburg/9838347 to your computer and use it in GitHub Desktop.
Save jstrassburg/9838347 to your computer and use it in GitHub Desktop.
My .vimrc
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