summaryrefslogtreecommitdiff
path: root/lua/plugins/lang/jsonnet.lua
blob: 41a6ef981ca3abb7de43e7f1236c9fa694b062d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
   {
      "google/vim-jsonnet",
      ft = { "jsonnet" },
   },

   {
      "neovim/nvim-lspconfig",
      opts = function(_, opts)
         if type(opts) == "table" then
            opts.servers = opts.servers or {}
            opts.servers.jsonnet_ls = {}
         end
      end,
   },
}