mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Merge 22e271deaa into a1c3ec4cd4
This commit is contained in:
commit
b612630114
1 changed files with 19 additions and 0 deletions
19
lua/lazyvim/plugins/extras/lang/jsonnet.lua
Normal file
19
lua/lazyvim/plugins/extras/lang/jsonnet.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue