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.

50 lines
1.0KB

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