Skip to content

Instantly share code, notes, and snippets.

@knewter
Created June 29, 2011 17:05
Show Gist options
  • Save knewter/1054325 to your computer and use it in GitHub Desktop.
Save knewter/1054325 to your computer and use it in GitHub Desktop.
" 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