Skip to content

Instantly share code, notes, and snippets.

@t0mmyt
Last active August 29, 2015 14:23
Show Gist options
  • Save t0mmyt/5a2bddeeb922dbd9f468 to your computer and use it in GitHub Desktop.
Save t0mmyt/5a2bddeeb922dbd9f468 to your computer and use it in GitHub Desktop.
vimrc
set ai sw=4 ts=4 sts=4 et bg=dark nu ml
set pastetoggle=<F2>
" Tabs!!
map <F8> :tabn<CR>
map <F7> :tabp<CR>
map <F6> :tabe
" Open the file you are cursor is currently over
map <c-F6> :tabe <c-r><c-a><CR>
" Highlight tabs and redundant whitespace
highlight RedundantWhitespace ctermbg=red guibg=red
match RedundantWhitespace /\s\+$\|\t/
syn on
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment