kickstart.nvim/lua/custom/plugins/leetcode.lua

23 lines
540 B
Lua
Raw Normal View History

2025-04-12 16:42:14 +01:00
return {
{
'kawre/leetcode.nvim',
build = ':TSUpdate html', -- if you have `nvim-treesitter` installed
dependencies = {
'nvim-telescope/telescope.nvim',
-- "ibhagwan/fzf-lua",
'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim',
'nvim-treesitter/nvim-treesitter',
},
opts = {
-- configuration goes here
2025-04-18 00:18:58 +01:00
injector = {
['cpp'] = {
before = { '#include <bits/stdc++.h>', 'using namespace std;' },
after = 'int main() {}',
},
},
2025-04-12 16:42:14 +01:00
},
},
}