plugins/chadtree: enable xdg setting to fix deps installation
This commit is contained in:
parent
f5525b2c35
commit
ff90549078
1 changed files with 5 additions and 0 deletions
|
|
@ -17,6 +17,11 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
plugins.chadtree.luaConfig.content = ''
|
plugins.chadtree.luaConfig.content = ''
|
||||||
vim.api.nvim_set_var("chadtree_settings", ${lib.nixvim.toLuaObject cfg.settings})
|
vim.api.nvim_set_var("chadtree_settings", ${lib.nixvim.toLuaObject cfg.settings})
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Use XDG specifications for storing the CHADTree runtime and session files.
|
||||||
|
# If set to false, will store everything under repo location.
|
||||||
|
# Fixes https://github.com/nix-community/nixvim/issues/4154
|
||||||
|
plugins.chadtree.settings.xdg = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
|
|
||||||
settingsExample = {
|
settingsExample = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue