mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-24 10:14:03 -05:00
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
empty = {
|
||||
plugins.cspell.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.cspell.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user