blob: 7619c8470dd2c836df67071663b41dec11f29bdb (
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
}
|