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; enable = true;
settings = { 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; max_jobs = null;
autoremove = false; autoremove = false;
autoinstall = true; autoinstall = true;
@ -21,7 +21,7 @@
level = "warn"; level = "warn";
}; };
lockfile = { 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')";
}; };
}; };
}; };