A collection of scripts and configurations for Bash (and others)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142
  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