modules/neovim: rename vim.spellChecking to vim.spellcheck

more consistent this way
This commit is contained in:
raf 2024-04-20 19:00:20 +03:00
commit 4d8dcc7e49
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
3 changed files with 14 additions and 10 deletions

View file

@ -5,7 +5,7 @@
}: let
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAfter;
cfg = config.vim.spellChecking;
cfg = config.vim.spellcheck;
in {
config = mkIf (cfg.enable && cfg.programmingWordlist.enable) {
vim = {

View file

@ -2,6 +2,6 @@
inherit (lib.modules) mkAliasOptionModule;
in {
imports = [
(mkAliasOptionModule ["vim" "spellcheck" "vim-dirtytalk" "enable"] ["vim" "spellChecking" "programmingWordlist" "enable"])
(mkAliasOptionModule ["vim" "spellcheck" "vim-dirtytalk" "enable"] ["vim" "spellcheck" "programmingWordlist" "enable"])
];
}