You are not logged in.
I'm using init.vim instead of init.lua because I prefer VimPlug. I've migrated some plugin configurations into lua files but the init.vim continues to get larger. Does anyone have any idea?
Last edited by FrozenArcher (2022-04-01 08:16:11)
Offline
Every file you put in $HOME/.config/nvim/plugin will be sourced at startup, so you can split it up in various files and put them in there.
Or if you don't want to do that for some reason you can keep separate .vim files in arbitrary places and just in include them in your main init.vim with the source command:
source [/path/to/]subfile1.vimLast edited by frabjous (2022-04-01 04:17:38)
Offline
Every file you put in $HOME/.config/nvim/plugin will be sourced at startup, so you can split it up in various files and put them in there.
Or if you don't want to do that for some reason you can keep separate .vim files in arbitrary places and just in include them in your main init.vim with the source command:
source [/path/to/]subfile1.vim
that works. thanks.
Offline