15 lines
409 B
Lua
Executable File
15 lines
409 B
Lua
Executable File
#!/nix/store/0kg70swgpg45ipcz3pr2siidq9fn6d77-coreutils-9.5/bin/env -S -l
|
|
|
|
---@type string|any[]
|
|
local skip_langs = vim.fn.getenv "SKIP_LOCKFILE_UPDATE_FOR_LANGS"
|
|
|
|
if skip_langs == vim.NIL then
|
|
skip_langs = {}
|
|
else
|
|
---@diagnostic disable-next-line: param-type-mismatch
|
|
skip_langs = vim.fn.split(skip_langs, ",")
|
|
end
|
|
|
|
require("nvim-treesitter.install").write_lockfile("verbose", skip_langs)
|
|
vim.cmd "q"
|