mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
15 lines
336 B
Nix
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'";
|
|
};
|
|
};
|
|
}
|