plugins/filetree: rename module name

This commit is contained in:
raf 2024-04-18 22:16:38 +03:00
commit e79ca151b1
Signed by: NotAShelf
GPG key ID: AF26552424E53993
2 changed files with 6 additions and 4 deletions

View file

@ -5,7 +5,7 @@
}: let
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAnywhere;
inherit (lib.toLuaObject) toLuaObject;
inherit (lib.nvim.lua) toLuaObject;
cfg = config.vim.filetree.neo-tree;
in {
@ -20,7 +20,7 @@ in {
"neo-tree-nvim"
];
luaConfigRc.neo-tree = entryAnywhere ''
luaConfigRC.neo-tree = entryAnywhere ''
require("neo-tree").setup(${toLuaObject cfg.setupOpts})
'';
};