init.vim 970 B

1234567891011121314151617181920212223242526272829
  1. " noah's $VIMINIT
  2. " get basic (set)tings
  3. source $XDG_CONFIG_HOME/nvim/general/basic.vim
  4. " get plugins
  5. source $XDG_CONFIG_HOME/nvim/vim-plug/plugins.vim
  6. " get plugin configs
  7. source $XDG_CONFIG_HOME/nvim/plug-conf/fern.vim
  8. source $XDG_CONFIG_HOME/nvim/plug-conf/emmet.vim
  9. source $XDG_CONFIG_HOME/nvim/plug-conf/ctrlp.vim
  10. source $XDG_CONFIG_HOME/nvim/plug-conf/sneak.vim
  11. source $XDG_CONFIG_HOME/nvim/plug-conf/airline.vim
  12. source $XDG_CONFIG_HOME/nvim/plug-conf/startify.vim
  13. source $XDG_CONFIG_HOME/nvim/plug-conf/editorconfig.vim
  14. source $XDG_CONFIG_HOME/nvim/plug-conf/wilder.vim
  15. lua require 'treesitter'
  16. lua require 'indent-blankline'
  17. lua require 'telescope'
  18. " get theme
  19. source $XDG_CONFIG_HOME/nvim/theme/theme.vim
  20. " get keybinds
  21. source $XDG_CONFIG_HOME/nvim/keys/bindings.vim
  22. source $XDG_CONFIG_HOME/nvim/keys/tex-macros.vim
  23. " get autocommands
  24. source $XDG_CONFIG_HOME/nvim/general/auto.vim
  25. " disalbe automatic identation (should be at the end???)
  26. filetype indent off