1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 11:39:46 +01:00

adjustements

This commit is contained in:
Matthieu C. 2024-09-25 22:43:11 +02:00
parent b6e728a3a3
commit 38dc46f215

View file

@ -419,8 +419,8 @@ in {
# link the packpath in expected folder so that even unwrapped neovim can pick
# home-manager's plugins
xdg.dataFile = mkMerge (mapAttrsToList (name: val: {
"nvim/site" = {
source = pkgs.vimUtils.packDir neovimConfig.packpathDirs;
"nvim/site/pack/hm-${name}" = {
source = "${pkgs.neovimUtils.packDir packpathDirs}/pack/${name}";
};
}) neovimConfig.packpathDirs);