diff options
Diffstat (limited to '.vim/lua')
| -rw-r--r-- | .vim/lua/spell.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/lua/spell.lua b/.vim/lua/spell.lua index 6ab157c..1d22325 100644 --- a/.vim/lua/spell.lua +++ b/.vim/lua/spell.lua @@ -1,7 +1,7 @@ vim.opt_local.spell = true -- vim.opt.spelllang = 'de_de,en_en' -vim.opt.spelllang = 'en_en' +vim.opt.spelllang = {'en_en', 'de_de'} vim.opt.spellfile = vim.fn.stdpath('data') .. '/spellfile.utf-8.add' vim.opt.spellcapcheck = '' vim.opt.spelloptions = {'camel'} |