This commit is contained in:
cbosvik 2024-09-19 11:55:24 +08:00 committed by GitHub
commit b612630114
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,19 @@
return {
{ "google/vim-jsonnet" },
{
"neovim/nvim-lspconfig",
opts = {
servers = {
jsonnet_ls = {},
},
},
},
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "jsonnet" })
end
end,
},
}