plugins/cspell: add module

Closes #2812
This commit is contained in:
Austin Horstman 2026-05-19 22:31:55 -05:00
parent a5a46c9447
commit 28eb36007c
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "cspell";
package = "cspell-nvim";
description = "cspell diagnostics and code actions for none-ls.";
maintainers = [ lib.maintainers.khaneliman ];
dependencies = [
"cspell"
];
callSetup = false;
hasSettings = false;
}

View file

@ -0,0 +1,9 @@
{
empty = {
plugins.cspell.enable = true;
};
defaults = {
plugins.cspell.enable = true;
};
}