18 lines
396 B
Lua
18 lines
396 B
Lua
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
|
|
}
|