1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/leetcode: init

This commit is contained in:
Fovir 2025-10-07 20:18:43 +08:00 committed by Matt Sturgeon
parent 9e56d5cc59
commit a46778cf75
2 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "leetcode";
package = "leetcode-nvim";
maintainers = [ lib.maintainers.Fovir ];
settingsExample = {
lang = "rust";
storage = {
home = "~/projects/leetcode";
cache = lib.nixvim.nestedLiteralLua "vim.fn.stdpath('cache') .. '/leetcode'";
};
};
}