mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 13:20:44 +00:00
another mistake
name should match package.pname
This commit is contained in:
parent
cca14c7d29
commit
a0281d329b
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ be used if the plugin uses a `require('module').setup(...)` pattern. Otherwise,
|
||||||
```nix
|
```nix
|
||||||
{
|
{
|
||||||
config.vim.lazy.plugins = {
|
config.vim.lazy.plugins = {
|
||||||
aerial-nvim = {
|
aerial.nvim = {
|
||||||
# ^^^^^^^^^ this name should match the package.pname or package.name
|
# ^^^^^^^^^ this name should match the package.pname or package.name
|
||||||
package = aerial-nvim;
|
package = aerial-nvim;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ As of version **0.7**, we exposed an API for configuring lazy-loaded plugins via
|
||||||
```nix
|
```nix
|
||||||
{
|
{
|
||||||
config.vim.lazy.plugins = {
|
config.vim.lazy.plugins = {
|
||||||
aerial = {
|
"aerial.nvim" = {
|
||||||
package = pkgs.vimPlugins.aerial-nvim;
|
package = pkgs.vimPlugins.aerial-nvim;
|
||||||
setupModule = "aerial";
|
setupModule = "aerial";
|
||||||
setupOpts = {
|
setupOpts = {
|
||||||
|
|
Loading…
Reference in a new issue