mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 13:48:35 +02:00
Added leetcode
This commit is contained in:
parent
073800f7db
commit
c1315e0d16
2 changed files with 18 additions and 5 deletions
3
lua/custom/plugins/leetcode.lua
Normal file
3
lua/custom/plugins/leetcode.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
'jiangmiao/auto-pairs'
|
||||
}
|
|
@ -1,7 +1,17 @@
|
|||
return {
|
||||
"kylechui/nvim-surround",
|
||||
version = "*",
|
||||
config = function ()
|
||||
require("nvim-surround").setup()
|
||||
end
|
||||
"kawre/leetcode.nvim",
|
||||
build = ":TSUpdate html",
|
||||
dependencies = {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
"nvim-lua/plenary.nvim", -- required by telescope
|
||||
"MunifTanjim/nui.nvim",
|
||||
|
||||
-- optional
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"rcarriga/nvim-notify",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
opts = {
|
||||
-- configuration goes here
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue