1
0

Enable spellcheck

This commit is contained in:
Scott Carroll
2026-02-05 14:44:52 +00:00
parent 6a4ffde1cf
commit 5db94cb588

View File

@@ -1,5 +1,12 @@
require("config.lazy")
-- enable spellchecking
-- z= for work suggestions
-- ]s next misspelling
-- https://neovim.io/doc/user/spell.html
vim.opt.spell = true
vim.opt.spelllang = "en_gb"
-- visual mode <space> = to line up "=" in selection
vim.keymap.set(
'v', '<leader>=', ':Tabularize /=<CR>',