1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/leetcode/default.nix
2025-10-07 21:59:51 +00:00

15 lines
336 B
Nix

{ 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'";
};
};
}