summary refs log tree commit diff
path: root/.vim/lua/internal/spell.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/internal/spell.lua')
-rw-r--r--.vim/lua/internal/spell.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/.vim/lua/internal/spell.lua b/.vim/lua/internal/spell.lua
index 57cbad2..3c37dad 100644
--- a/.vim/lua/internal/spell.lua
+++ b/.vim/lua/internal/spell.lua
@@ -1,8 +1,7 @@
-
 vim.opt_local.spell = true
 vim.opt.spellfile = vim.fn['spellfile#WritableSpellDir']() .. '/spellfile.utf-8.add'
 vim.opt.spellcapcheck = ''
-vim.opt.spelloptions = {'camel'}
+vim.opt.spelloptions = { 'camel' }
 vim.opt.spellsuggest = 'double'
 
 vim.keymap.set('n', '<C-l>', require('telescope.builtin').spell_suggest)