mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
15 lines
272 B
Lua
Executable file
15 lines
272 B
Lua
Executable file
#!/usr/bin/env -S nvim -l
|
|
|
|
vim.opt.runtimepath:append('.')
|
|
|
|
-- needed on CI
|
|
vim.fn.mkdir(vim.fn.stdpath('cache'), 'p')
|
|
|
|
local done = false
|
|
require('nvim-treesitter.install').install('all', {}, function()
|
|
done = true
|
|
end)
|
|
|
|
vim.wait(6000000, function()
|
|
return done
|
|
end)
|