Add a colorscheme from local folder #2836
-
Hi, Using something like |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
One approach is to use |
Beta Was this translation helpful? Give feedback.
-
Another approach would be to add the path to the plugin location to your RTP: extraConfigLua = ''
vim.opt.runtimepath:prepend("~/path/to/plugin")
vim.opt.runtimepath:prepend("~/path/to/plugin/after")
''; This allows you to tweak your plugin without rebuilding your nix config. |
Beta Was this translation helpful? Give feedback.
Another approach would be to add the path to the plugin location to your RTP:
This allows you to tweak your plugin without rebuilding your nix config.
However, you have to ensure that the plugin files are indeed at this location. Nix will not deploy it for you.