diff options
| author | Robert Günzler <r@gnzler.io> | 2023-01-19 18:33:43 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2023-01-19 18:33:43 +0100 |
| commit | fc67eecc8a40bf28d3d2b190702e58c580bfba9f (patch) | |
| tree | 0b8d0455046ae484e036d2f9dfa69306bbea811d /.vim/lua/internal/spell.lua | |
| parent | c03b74ce367d6e9e2988dbb4a18985bc372dd8a6 (diff) | |
vim: format config with stylua
Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '.vim/lua/internal/spell.lua')
| -rw-r--r-- | .vim/lua/internal/spell.lua | 3 |
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) |