summaryrefslogtreecommitdiff
path: root/lua/plugins/lang/promql.lua
blob: 79ec72a7804c783ff11caa4cb043c8dad21aa367 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
return {
   {
      "nvim-treesitter/nvim-treesitter",
      opts = function(_, opts)
         if type(opts) == "table" then
            opts.ensure_installed = opts.ensure_installed or {}
            vim.list_extend(opts.ensure_installed, { "promql" })
         end
      end,
   },

   {
      name = "promqlfmt",
      url = "https://git.segundo.io/nvim/promqlfmt",
      --dir = "/Users/christian.segundo/git/promql.nvim",
      --dev = true,
      cmd = { "Promqlfmt" },
   },
}