Skip to content

Commit

Permalink
visuals/indent-blankline: properly pass setupOpts to `mkPluginSetupOp…
Browse files Browse the repository at this point in the history
…tion`
  • Loading branch information
NotAShelf committed Dec 9, 2024
1 parent 0c90a7b commit 48bcd5d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
inherit (lib.modules) mkRenamedOptionModule;
inherit (lib.options) mkOption mkEnableOption literalExpression;
inherit (lib.types) int bool str nullOr either listOf attrsOf;
inherit (lib.nvim.types) mkPluginSetupOption;

cfg = config.vim.visuals;
in {
Expand All @@ -15,7 +16,7 @@ in {

options.vim.visuals.indent-blankline = {
enable = mkEnableOption "indentation guides [indent-blankline]";
setupOpts = {
setupOpts = mkPluginSetupOption "indent-blankline" {
debounce = mkOption {
type = int;
description = "Debounce time in milliseconds";
Expand Down

0 comments on commit 48bcd5d

Please sign in to comment.