Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. "1.1
  2.  
  3. loadplugins '\.(js|penta)$'
  4. group user
  5.  
  6. map <f2> :set go+=T<CR>
  7. map <f3> :set go-=T<CR>
  8.  
  9. "map settings I like
  10. map -count -modes=n,v d -builtin <count><Space>
  11. map -count -modes=n,v e -builtin <count><C-b>
  12. map -count -modes=n,v h -builtin <count>8h
  13. map -count -modes=n,v H -builtin <count><C-p>
  14. map -count -modes=n,v J -builtin :ba<CR>
  15. nmap -builtin -count -modes=n j -builtin <count>8j
  16. nmap -builtin -count -modes=n k -builtin <count>8k
  17. map -count -modes=n,v K -builtin :fo<CR>
  18. map -count -modes=n,v L -builtin <count><C-n>
  19. map -count -modes=n,v x -builtin <count>d
  20. map -count -modes=n,v l -builtin <count>8l
  21.  
  22. " map moving tabs
  23. :map -g user -b <C-h> :tabmove! -1<CR>
  24. :map -g user -b <C-l> :tabmove! +1<CR>
  25.  
  26. "Map autoclosing tabs to u and X
  27. map -builtin -modes=n,v X u
  28.  
  29. "pass commonly used firefox commands to firefox:
  30. " Normal Mode Mappings
  31. nmap -builtin <C-f> /
  32. set passkeys=*:<C-c>,<C-x>,<C-t>,<C-w>,<Up>,<Down>,<Left>,<Right>,<Space>
  33. " c-v is an edge case
  34. nmap -builtin <C-v> <C-v><C-v>
  35. imap -builtin <C-v> <C-v><C-v>
  36.  
  37. hi -a Hint font-size: 9pt !important;
  38. set hintkeys=afgqrtyunvbcm
  39. set hinttimeout=500
  40.  
  41. "set highlighting in search
  42. set hlfind
  43.  
  44. " Set scrolling settings
  45. set scrollsteps=1
  46. set scrolltime=1
  47.  
  48. "force fullscreen off
  49. set fs&
  50.  
  51. " set title to be more awesome
  52. set titlestring=MechJeb
  53.  
  54. " Open bar by default (defaults plus T)
  55. set guioptions=bCrsT
  56.  
  57. " set default search provider
  58. set defsearch=duckduckgo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement