mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
11 lines
384 B
Lua
11 lines
384 B
Lua
-- Execute as `nvim --headless -c "luafile ./scripts/write-lockfile.lua"`
|
|
local skip_langs = vim.fn.getenv "SKIP_LOCKFILE_UPDATE_FOR_LANGS"
|
|
if skip_langs == vim.NIL then
|
|
skip_langs = {}
|
|
else
|
|
skip_langs = vim.fn.split(skip_langs, ",")
|
|
end
|
|
print("Skipping languages: " .. vim.inspect(skip_langs))
|
|
require("nvim-treesitter.install").write_lockfile("verbose", skip_langs)
|
|
vim.cmd "q"
|