vimoutlinerrc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. "Extra mappings *****************************************************
  2. "This mapping is fold-level and fold-state dependent
  3. "map <S-Down> dd p
  4. "map <S-Up> dd <up>P
  5. "Common Plugins
  6. " This variable holds name of all VO modules you want to load. Do NOT use ru
  7. " directly in this file, because you will get into many strange surprises. If
  8. " you do not want to load any VO modules leave it blank (default). This
  9. " variable can be freely modified in ~/.vimoutlinerrc.
  10. "let g:vo_modules2load = ""
  11. let g:vo_modules_load = "checkbox:hoist"
  12. "User Preferences ***************************************************
  13. let maplocalleader = ",," " this is prepended to VO key mappings
  14. "setlocal ignorecase " searches ignore case
  15. "setlocal smartcase " searches use smart case
  16. "setlocal wrapmargin=5
  17. "setlocal tw=78
  18. "setlocal tabstop=4 " tabstop and shiftwidth must match
  19. "setlocal shiftwidth=4 " values from 2 to 8 work well
  20. "setlocal background=dark " for dark backgrounds
  21. setlocal nowrap
  22. "Hoisting ***********************************************************
  23. "Uncomment and set to 1 to debug hoisting
  24. let g:hoistParanoia=0
  25. "Custom Colors ******************************************************
  26. " Uncomment this next line to force using VO on a light background
  27. " colorscheme vo_light
  28. " Uncomment this next line to force using VO on a dark background
  29. " colorscheme vo_dark
  30. " Or create your own color scheme. You can find sample files in Vim's
  31. " colors directory. There may even be a colors directory in your own
  32. " $HOME/.vim directory.