mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
29 lines
581 B
Nix
29 lines
581 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib.modules) mkIf;
|
||
|
inherit (lib.nvim.dag) entryAnywhere;
|
||
|
inherit (lib.nvim.lua) toLuaObject;
|
||
|
|
||
|
cfg = config.vim.filetree.neo-tree;
|
||
|
in {
|
||
|
config = mkIf cfg.enable {
|
||
|
vim = {
|
||
|
startPlugins = [
|
||
|
# dependencies
|
||
|
"plenary-nvim" # commons library
|
||
|
"image-nvim" # optional for image previews
|
||
|
"nui-nvim" # ui library
|
||
|
# neotree
|
||
|
"neo-tree-nvim"
|
||
|
];
|
||
|
|
||
|
luaConfigRC.neo-tree = entryAnywhere ''
|
||
|
require("neo-tree").setup(${toLuaObject cfg.setupOpts})
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|