Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. " Fast saves
  2. map ,w :w!<cr>
  3.  
  4. "Easy escaping to normal model
  5. imap jj <esc>
  6.  
  7. "easier window navigation
  8. map <C-h> <C-w>h
  9. map <C-j> <C-w>j
  10. map <C-k> <C-w>k
  11. map <C-l> <C-w>l
  12.  
  13. "Load the current buffer in Chrome
  14. map ,c :!open -a Google\ Chrome<cr>
  15.  
  16. highlight Search cterm=underline
  17.  
  18. " Edit todo list for project
  19. map ,todo :e todo.txt<cr>
  20.  
  21. " Open splits
  22. map vs :vsplit<cr>
  23. map sp :split<cr>
  24.  
  25. map r :red<cr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement