summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/leetcode.lua
blob: 9276295c5c5c7fb055e74028a69dc411f6fcb54a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
return { "kawre/leetcode.nvim",
  requires = {
    "nvim-lua/plenary.nvim",
    "nvim-telescope/telescope.nvim",
    "MunifTanjim/nui.nvim",
    "nvim-treesitter/nvim-treesitter"
  },
  config = function()
    -- because we"re using treesitter make sure to install the html parser
    vim.cmd("TSUpdate html")
  end,
  function()
    require("leetcode").setup {
      lang = "java"
    }
  end
}