mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-05 14:54:33 +02:00
nvim-lightbulb: fix helpers
This commit is contained in:
parent
a178cf7268
commit
1233dc4ed5
1 changed files with 27 additions and 25 deletions
|
@ -1,10 +1,11 @@
|
||||||
{
|
{ pkgs
|
||||||
pkgs,
|
, lib
|
||||||
lib,
|
, config
|
||||||
config,
|
, ...
|
||||||
helpers,
|
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
helpers = import ../helpers.nix { inherit lib; };
|
||||||
|
in
|
||||||
with lib; {
|
with lib; {
|
||||||
options.plugins.nvim-lightbulb = {
|
options.plugins.nvim-lightbulb = {
|
||||||
enable = mkEnableOption "nvim-lightbulb, showing available code actions";
|
enable = mkEnableOption "nvim-lightbulb, showing available code actions";
|
||||||
|
@ -66,7 +67,8 @@ with lib; {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = let
|
config =
|
||||||
|
let
|
||||||
cfg = config.plugins.nvim-lightbulb;
|
cfg = config.plugins.nvim-lightbulb;
|
||||||
setupOptions = {
|
setupOptions = {
|
||||||
inherit (cfg) ignore sign autocmd;
|
inherit (cfg) ignore sign autocmd;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue