feat: neovim spellchecking

This commit is contained in:
NotAShelf 2023-06-06 03:25:50 +03:00
commit 30519c1a23
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
2 changed files with 15 additions and 0 deletions

View file

@ -138,6 +138,10 @@ in {
${optionalString (!cfg.enableEditorconfig) ''
let g:editorconfig = v:false
''}
${optionalString (cfg.spellChecking.enable) ''
set spell
set spelllang=${toString cfg.spellChecking.language}
''}
'';
};
}