summary refs log tree commit diff
path: root/.vim/lua/spell.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/spell.lua')
-rw-r--r--.vim/lua/spell.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/.vim/lua/spell.lua b/.vim/lua/spell.lua
deleted file mode 100644
index e5cfca1..0000000
--- a/.vim/lua/spell.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-
-vim.opt_local.spell = true
-vim.opt.spelllang = {'en_gb', 'de_de'}
-vim.opt.spellfile = vim.fn['spellfile#WritableSpellDir']() .. '/spellfile.utf-8.add'
-vim.opt.spellcapcheck = ''
-vim.opt.spelloptions = {'camel'}
-vim.opt.spellsuggest = 'double'
-
-vim.keymap.set('n', '<C-l>', require('telescope.builtin').spell_suggest)
-vim.keymap.set('n', '<C-l>', [[<c-g>u<esc>[s1z=`]a<c-g>u]])