Advertisement
jmcpaste

reset vim defaults to my 6.x workflow

Aug 22nd, 2017
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. " ----------------------------------------------------------------------
  2. " For Version 7.0 or above, some settings from:
  3. " http://vimrc-dissection.blogspot.com/2006/08/vim-turn-that-showmatch-crap.html
  4. " ----------------------------------------------------------------------
  5. :let no_man_maps=1
  6. :let loaded_matchparen = 1
  7. :set comments=""
  8. :set matchpairs=""
  9. :set mouse=
  10. :set nocin
  11. :set nohlsearch
  12. :set noincsearch
  13. :set nois
  14. :set paste
  15. :syntax off
  16. """ disable autocomments
  17. :au FileType * setl fo-=cro
  18. """ turn off brace match comment matching
  19. set noshowmatch
  20. """ stop autoindent
  21. set noautoindent
  22. :filetype indent off
  23. set columns=80
  24. set noundofile
  25.  
  26. " hopefully this does not break above
  27. set showmode ruler
  28. " turn off a new STUPID vim 8 default
  29. set scrolloff=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement