mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-25 08:19:48 +01:00
Compare commits
No commits in common. "89bdd80e20f83faa5ea1d799d462e48c6c2da0ba" and "b397dcb430b8d3156ea4845897ae38f5051bb419" have entirely different histories.
89bdd80e20
...
b397dcb430
6 changed files with 6 additions and 9 deletions
|
@ -31,6 +31,7 @@ inputs: let
|
||||||
|
|
||||||
spellcheck = {
|
spellcheck = {
|
||||||
enable = isMaximal;
|
enable = isMaximal;
|
||||||
|
programmingWordlist.enable = isMaximal;
|
||||||
};
|
};
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
"rich-presence"
|
"rich-presence"
|
||||||
"session"
|
"session"
|
||||||
"snippets"
|
"snippets"
|
||||||
# "spellcheck" # FIXME: see neovim/init/spellcheck.nix
|
"spellcheck"
|
||||||
"statusline"
|
"statusline"
|
||||||
"tabline"
|
"tabline"
|
||||||
"terminal"
|
"terminal"
|
||||||
|
|
|
@ -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 ''
|
programmingWordlist.enable = mkEnableOption ''
|
||||||
vim-dirtytalk, a wordlist for programmers containing
|
vim-dirtytalk, a wordlist for programmers containing
|
||||||
common programming terms.
|
common programming terms.
|
||||||
|
@ -54,7 +50,6 @@ in {
|
||||||
Setting this value as `true` has the same effect
|
Setting this value as `true` has the same effect
|
||||||
as setting {option}`vim.spellCheck.enable`
|
as setting {option}`vim.spellCheck.enable`
|
||||||
'';
|
'';
|
||||||
*/
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -96,13 +96,13 @@ in {
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
description = "CSS formatter to use";
|
description = "CSS formatter to use";
|
||||||
type = enum (attrNames formats);
|
type = with types; enum (attrNames formats);
|
||||||
default = defaultFormat;
|
default = defaultFormat;
|
||||||
};
|
};
|
||||||
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
description = "CSS formatter package";
|
description = "CSS formatter package";
|
||||||
type = package;
|
type = types.package;
|
||||||
default = formats.${cfg.format.type}.package;
|
default = formats.${cfg.format.type}.package;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -51,3 +51,4 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"release": "v0.6",
|
"release": "v0.6",
|
||||||
"isReleaseBranch": true
|
"isReleaseBranch": false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue