Skip to content

Instantly share code, notes, and snippets.

@jchernan
Last active August 29, 2015 14:06
Show Gist options
  • Save jchernan/645e838ad9f768d67c25 to your computer and use it in GitHub Desktop.
Save jchernan/645e838ad9f768d67c25 to your computer and use it in GitHub Desktop.
syntax enable
set vb
"indents
set shiftwidth=2
set tabstop=2
set softtabstop=2
set expandtab
"features
set ruler
set ignorecase
"tabs
map <S-Tab> :tabn<CR>
map <C-t> :tabnew<CR>
map <C-i> :tabp<CR>
map <C-o> :tabn<CR>
"folding
set foldmethod=syntax
set nofoldenable
"temp
"mkdir -p ~/.vim/tmp
set directory=~/.vim/tmp
set backupdir=~/.vim/tmp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment