Last active
August 29, 2015 14:23
-
-
Save t0mmyt/5a2bddeeb922dbd9f468 to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or 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 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