init.vim 734 B

1234567891011121314151617181920212223
  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. source $XDG_CONFIG_HOME/nvim/plug-conf/emmet.vim
  10. source $XDG_CONFIG_HOME/nvim/plug-conf/ctrlp.vim
  11. source $XDG_CONFIG_HOME/nvim/plug-conf/sneak.vim
  12. source $XDG_CONFIG_HOME/nvim/plug-conf/airline.vim
  13. " get theme
  14. source $XDG_CONFIG_HOME/nvim/theme/theme.vim
  15. " get keybinds
  16. source $XDG_CONFIG_HOME/nvim/keys/bindings.vim
  17. source $XDG_CONFIG_HOME/nvim/keys/tex-macros.vim
  18. " get autocommands
  19. source $XDG_CONFIG_HOME/nvim/general/auto.vim
  20. " disalbe automatic identation (should be at the end???)
  21. filetype indent off