1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

tests/plugins/pckr: use official vim.fs.joinpath instead of removed util.join_paths

This commit is contained in:
Gaetan Lepage 2025-09-13 19:06:07 +02:00 committed by Gaétan Lepage
parent f342a5dd53
commit f9e602a3c3

View file

@ -8,7 +8,7 @@
enable = true;
settings = {
pack_dir.__raw = "require('pckr.util').join_paths(vim.fn.stdpath('data'), 'site')";
pack_dir.__raw = "vim.fs.joinpath(vim.fn.stdpath('data'), 'site')";
max_jobs = null;
autoremove = false;
autoinstall = true;
@ -21,7 +21,7 @@
level = "warn";
};
lockfile = {
path.__raw = "require('pckr.util').join_paths(vim.fn.stdpath('config'), 'pckr', 'lockfile.lua')";
path.__raw = "vim.fs.joinpath(vim.fn.stdpath('config'), 'pckr', 'lockfile.lua')";
};
};
};