init.vim 430 B

12345678910111213141516
  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 keybinds
  10. source $XDG_CONFIG_HOME/nvim/keys/bindings.vim
  11. " get autocommands
  12. source $XDG_CONFIG_HOME/nvim/general/auto.vim
  13. " disalbe automatic identation (should be at the end???)
  14. filetype indent off