How to add a directory as Neovim plugin when running Neovim? #643
-
Hi, this may be not the correct place to ask this question. But still, if you have sometime to read this, I want to ask for your help as a Neovim plugin manager developer. I want to add a directory as a Neovim colorscheme plugin when I running Neovim. For example I use this lua scripts: vim.opt.runtimepath:append('~/plugin1')
vim.opt.runtimepath:append('~/plugin1/colors') After this, I use Then I type I wonder how to dynamically load a directory as Neovim plugin while running in Neovim??? UpdateI found that, when I manually type But when I write these things to my plugin here, it's not working. Very strange! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Please read the docs. Especially the parts about |
Beta Was this translation helpful? Give feedback.
Please read the docs. Especially the parts about
dev
anddir
. It's literally all in there. Next time, just read the docs first before posting a question...