Add Estonian language to Neovim spellchecker

How to generate the necessary language files:
- install hunspell-et on Arch Linux
- run `nvim -u NONE -c "mkspell! et /usr/share/hunspell/et_EE" -c q` in ~/.local/share/nvim/site/spell
This commit is contained in:
Wekuz 2026-05-10 22:28:39 +03:00
parent 833209ae17
commit 208d89af36
Signed by: Wekuz
GPG key ID: 2E502F2AABD32DF9

View file

@ -19,4 +19,4 @@ vim.opt.undofile = true
vim.opt.updatetime = 2000
vim.opt.clipboard = "unnamedplus"
vim.opt.spelllang = { "en_gb", "en_us" }
vim.opt.spelllang = { "en_gb", "en_us", "et" }