Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. " beautify 'discards control characters'
  2. " set beautify
  3. " %s/the.*\n//gc works with MAGIC set
  4. set magic
  5. set extended
  6. set hardtabs=0
  7. set ruler
  8. set shiftwidth=4
  9. set showmode
  10. set verbose
  11. set tabstop=4
  12. set term=xterm
  13. set iclower
  14. "set ignorecase
  15. set showmatch
  16. set searchincr
  17. "set edcompatible
  18. set noflash
  19.  
  20. "Command-Line History and Completion
  21. " using backtick ` for completion
  22. " [tab] needs ^V^V[tab]
  23. " Replace via sed or try encoding
  24. set cedit=SYNTAB
  25. set filec=SYNTAB
  26.  
  27. map gg 1G
  28. "map gx :wCR:!bpython -i -q %ESC
  29. map gx :wCR:!clear;python3.7 -i %ESC
  30. "map gx :wCR:!clear;ipython -i --classic %ESC
  31. "cmap w!! %!sudo tee > /dev/null %
  32. ":w !sudo tee %ESC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement