Skip to content

Commit

Permalink
feat(game): Add leetcode.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzaaft authored and mehalter committed May 31, 2024
1 parent 4b149f1 commit a77cc47
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/astrocommunity/game/leetcode-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# leetcode.nvim

A Neovim plugin enabling you to solve LeetCode problems.

**Repository:** <https://github.com/kawre/leetcode.nvim>
16 changes: 16 additions & 0 deletions lua/astrocommunity/game/leetcode-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---@type LazySpec
return {
"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", optional = true },
{ "rcarriga/nvim-notify", optional = true },
{ "nvim-tree/nvim-web-devicons", optional = true },
},
opts = {},
}

0 comments on commit a77cc47

Please sign in to comment.