cmp-spell
cmp-spell copied to clipboard
Multiple Languages
Is it possible to use multiple languages as a language source?
yes. Check :help spelllang
.
e.g in lua you can set vim.opt.spelllang = {'en', 'it'}
.
I tried this with vim.opt.spelllang = {'en_gb', 'de'}
, both are installed and it did not work. Any help on how to troubleshoot?
What works for me is vim.opt.spelllang = 'en_us,fr'
.