Report Bug
·
Request Feature
·
Ask Question
A Swiss army knife for building and testing rocks.nvim modules.
rocks-dev.nvim
extends rocks.nvim
with the ability to install dev plugins locally.
Simply run :Rocks install rocks-dev.nvim
,
and you are good to go!
With this extension, you can add a dir
field table to plugins in your rocks.toml
,
for example:
[plugins."sweetie.nvim"]
dir = "~/git/nvim/sweetie.nvim"
This extension also supports dev.path
, which allows you to provide the path to where local plugins
are stored. You can tell rocks-dev to load a plugin from that path with dev = true
, for example:
[dev]
path = "~/Projects"
[plugins]
"sweetie.nvim" = { dev = true }
When both dir
and dev = true
are present, dir
gets priority.
rocks-config
interoperabilityYou can use rocks-config.nvim >= 2.0.0
to configure dev
plugins, however, it does not currently work with bundles.
rocks-dev.nvim
is licensed under GPLv3.