mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
585 B
585 B
New Method
As of version 0.5, we have a more extensive API for configuring plugins,
under vim.extraPlugins
. Instead of using DAGs exposed by the library, you may
use the extra plugin module as follows:
{
config.vim.extraPlugins = with pkgs.vimPlugins; {
aerial = {
package = aerial-nvim;
setup = ''
require('aerial').setup {
-- some lua configuration here
}
'';
};
harpoon = {
package = harpoon;
setup = "require('harpoon').setup {}";
after = ["aerial"];
};
};
}