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:
parent
f342a5dd53
commit
f9e602a3c3
1 changed files with 2 additions and 2 deletions
|
|
@ -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')";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue