init.vim 536 B

12345678910111213141516171819
  1. " noah's $VIMINIT
  2. "
  3. " get basic (set)tings
  4. source $XDG_CONFIG_HOME/nvim/general/basic.vim
  5. " get plugins
  6. source $XDG_CONFIG_HOME/nvim/vim-plug/plugins.vim
  7. " get plugin configs
  8. source $XDG_CONFIG_HOME/nvim/plug-conf/fern.vim
  9. " get theme
  10. source $XDG_CONFIG_HOME/nvim/theme/theme.vim
  11. " get keybinds
  12. source $XDG_CONFIG_HOME/nvim/keys/bindings.vim
  13. source $XDG_CONFIG_HOME/nvim/keys/tex-macros.vim
  14. " get autocommands
  15. source $XDG_CONFIG_HOME/nvim/general/auto.vim
  16. " disalbe automatic identation (should be at the end???)
  17. filetype indent off