summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/leetcode.lua
blob: bda7c08c107b467bb284f5ea402c705e4d8880a4 (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
}