parent
a5a46c9447
commit
28eb36007c
2 changed files with 24 additions and 0 deletions
15
plugins/by-name/cspell/default.nix
Normal file
15
plugins/by-name/cspell/default.nix
Normal 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;
|
||||
}
|
||||
9
tests/test-sources/plugins/by-name/cspell/default.nix
Normal file
9
tests/test-sources/plugins/by-name/cspell/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.cspell.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.cspell.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue