init.vim 581 B

123456789101112131415161718192021222324
  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. colorscheme onedark
  14. let g:airline_theme='onedark'
  15. set background=dark
  16. " make background transparent
  17. "hi Normal ctermbg=none
  18. "hi NonText ctermbg=none
  19. " disalbe automatic identation (should be at the end???)
  20. filetype indent off