mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 14:45:58 +01:00
fix: bad import
This commit is contained in:
parent
bd9eb56531
commit
99fd8c9eb6
1 changed files with 5 additions and 2 deletions
|
@ -3,8 +3,11 @@
|
|||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf optionals mkMerge mkBinding nvim;
|
||||
inherit (lib.modules) mkIf mkMerge;
|
||||
inherit (lib.lists) optionals;
|
||||
inherit (lib.nvim.lua) toLuaObject;
|
||||
inherit (lib.nvim.dag) entryAnywhere;
|
||||
inherit (lib.nvim.binds) mkBinding;
|
||||
|
||||
cfg = config.vim.session.nvim-session-manager;
|
||||
in {
|
||||
|
@ -25,7 +28,7 @@ in {
|
|||
# TODO: load_current_dir_session
|
||||
];
|
||||
|
||||
luaConfigRC.nvim-session-manager = nvim.dag.entryAnywhere ''
|
||||
luaConfigRC.nvim-session-manager = entryAnywhere ''
|
||||
local Path = require('plenary.path')
|
||||
local sm = require('session_manager.config')
|
||||
require('session_manager').setup(${toLuaObject cfg.setupOpts})
|
||||
|
|
Loading…
Reference in a new issue