kitchen sink

This commit is contained in:
2025-01-24 13:56:11 -06:00
parent a0ebc39b59
commit 8eaa615596
25 changed files with 444 additions and 412 deletions

View File

@ -0,0 +1,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
}