Created
June 29, 2011 17:05
-
-
Save knewter/1054325 to your computer and use it in GitHub Desktop.
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
" Make tab navigation nicer | |
map <C-J> :tabn<CR> | |
map <C-K> :tabp<CR> | |
" Make opening files in a new tab nicer | |
map <C-O> :tabnew | |
" Show trailing whitepace and spaces before a tab: | |
:highlight ExtraWhitespace ctermbg=red guibg=red | |
:autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ | |
" Set background color for the current line | |
:set cursorline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment