Skip to content

Commit d55680f

Browse files
committed
buildfix: fix rafs wrong code suggestion
1 parent 84a4dd7 commit d55680f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/plugins/minimap/codewindow/config.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
}: let
66
inherit (lib.modules) mkIf mkMerge;
77
inherit (lib.nvim.dag) entryAnywhere;
8+
inherit (lib.nvim.lua) toLuaObject;
89
inherit (lib.nvim.binds) addDescriptionsToMappings mkSetLuaBinding pushDownDefault;
910

1011
cfg = config.vim.minimap.codewindow;
@@ -33,7 +34,7 @@ in {
3334

3435
pluginRC.codewindow = entryAnywhere ''
3536
local codewindow = require('codewindow')
36-
codewindow.setup(${cfg.setupOpts})
37+
codewindow.setup(${toLuaObject cfg.setupOpts})
3738
'';
3839
};
3940
};

0 commit comments

Comments
 (0)