2023-12-09 19:03:58 +00:00
|
|
|
# New Method {#sec-new-method}
|
|
|
|
|
2024-04-20 03:57:11 +00:00
|
|
|
As of version **0.5**, we have a more extensive API for configuring plugins, under `vim.extraPlugins`.
|
2023-12-09 19:03:58 +00:00
|
|
|
|
|
|
|
Instead of using DAGs exposed by the library, you may use the extra plugin module as follows:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
{
|
|
|
|
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"];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|