Compare commits

...

3 commits

Author SHA1 Message Date
89bdd80e20
meta: mark as release 2024-04-27 16:38:44 +03:00
1740b437c0
neovim/spellcheck: disable programming wordlist
errors as it cannot download its spellfile. needs to be fixed
2024-04-27 16:22:42 +03:00
aaf286dce4
modules: fix merge conflicts 2024-04-27 16:13:19 +03:00
6 changed files with 9 additions and 6 deletions

View file

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

View file

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

View file

@ -43,6 +43,10 @@ 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.
@ -50,6 +54,7 @@ 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 = with types; enum (attrNames formats);
type = enum (attrNames formats);
default = defaultFormat;
};
package = mkOption {
description = "CSS formatter package";
type = types.package;
type = package;
default = formats.${cfg.format.type}.package;
};
};

View file

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

View file

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