At the moment the command to be called from the plugin is hardcoded to vectorcode, however in some circumstances it is advantageous to be able so set this manually:
require("vectorcode").setup({
cmd = vim.fn.expand("~/bin/special-vectorcode-build")
})
E.g. I'm using nixvim and this way I could create a nixvim module which not only includes the plugin but implicitly requires the VectorCode package by using the package relative path to the vectorcode binary.
At the moment the command to be called from the plugin is hardcoded to
vectorcode, however in some circumstances it is advantageous to be able so set this manually:E.g. I'm using nixvim and this way I could create a nixvim module which not only includes the plugin but implicitly requires the VectorCode package by using the package relative path to the vectorcode binary.