A collection of scripts and configurations for Bash (and others)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
954B

  1. so ~/.vim/plugins.vim
  2. so ~/.vim/cs.vim
  3. "so ~/.vim/wal.vim
  4. colorscheme zenburn
  5. "colorscheme wal.vim
  6. " Defaults for OmniSharp
  7. so ~/.vim/cs.vim
  8. " -- DONE
  9. if exists('$SHELL')
  10. set shell=$SHELL
  11. else
  12. set shell=/bin/sh
  13. endif
  14. " session management
  15. let g:session_directory = "~/.vim/session"
  16. let g:session_autoload = "no"
  17. let g:session_autosave = "no"
  18. let g:session_command_aliases = 1
  19. " Configurations for NERDTree Plugin.
  20. map <C-o> :NERDTreeToggle<CR>
  21. autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
  22. " ---------------------------------------------------
  23. " Core configuration options...
  24. " ---------------------------------------------------
  25. " I like syntax highlighting
  26. syntax enable
  27. " Always spaces for tabs. Two spaces should be nice :)
  28. set expandtab
  29. set shiftwidth=2
  30. set softtabstop=2
  31. " Setting .ejs files to be highlighted like html files...
  32. au BufNewFile,BufRead *.ejs set filetype=html