Compare commits

..

No commits in common. "89bdd80e20f83faa5ea1d799d462e48c6c2da0ba" and "b397dcb430b8d3156ea4845897ae38f5051bb419" have entirely different histories.

6 changed files with 6 additions and 9 deletions

View file

@ -31,6 +31,7 @@ inputs: let
spellcheck = {
enable = isMaximal;
programmingWordlist.enable = isMaximal;
};
lsp = {

View file

@ -34,7 +34,7 @@
"rich-presence"
"session"
"snippets"
# "spellcheck" # FIXME: see neovim/init/spellcheck.nix
"spellcheck"
"statusline"
"tabline"
"terminal"

View file

@ -43,10 +43,6 @@ in {
'';
};
/*
# FIXME: This needs to be revisited. It tries to install
# the spellfile to an user directory, but it cannot do so
# as we sanitize runtime paths.
programmingWordlist.enable = mkEnableOption ''
vim-dirtytalk, a wordlist for programmers containing
common programming terms.
@ -54,7 +50,6 @@ in {
Setting this value as `true` has the same effect
as setting {option}`vim.spellCheck.enable`
'';
*/
};
config = mkIf cfg.enable {

View file

@ -96,13 +96,13 @@ in {
type = mkOption {
description = "CSS formatter to use";
type = enum (attrNames formats);
type = with types; enum (attrNames formats);
default = defaultFormat;
};
package = mkOption {
description = "CSS formatter package";
type = package;
type = types.package;
default = formats.${cfg.format.type}.package;
};
};

View file

@ -51,3 +51,4 @@ in {
};
};
}

View file

@ -1,4 +1,4 @@
{
"release": "v0.6",
"isReleaseBranch": true
"isReleaseBranch": false
}