summary refs log tree commit diff
path: root/.vim/lua/spell.lua
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2022-04-25 17:38:11 +0200
committerRobert Günzler <r@gnzler.io>2022-04-25 17:38:11 +0200
commit44a774f614e914ec9e91c9a869e00ce4d2c4e9be (patch)
tree14143a440e5ac4fe10e4e3e32dbe3dcb6b86918a /.vim/lua/spell.lua
parent2151cc1e8c8e4f22fab90131513dbc58178b4afb (diff)
vim: also handle german spelling
Diffstat (limited to '.vim/lua/spell.lua')
-rw-r--r--.vim/lua/spell.lua2
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'}