chore: moved spell check to markdown only 5a2f5e7f
Steve · 2026-03-23 20:01 2 file(s) · +1 −1
nvim/lua/config/autocmds.lua +1 −0
94 94
  callback = function()
95 95
    vim.opt_local.wrap = true
96 96
    vim.opt_local.linebreak = true  -- Break at word boundaries
97 +
    vim.opt_local.spell = true
97 98
  end,
98 99
})
nvim/lua/config/options.lua +0 −1
33 33
vim.opt.signcolumn = "yes"     -- Always show the signcolumn, otherwise it would shift the text each time
34 34
vim.opt.smartcase = true       -- Don't ignore case with capitals
35 35
vim.opt.smartindent = true     -- Insert indents automatically
36 -
vim.opt.spell = true
37 36
vim.opt.spelllang = { "en" }
38 37
vim.opt.splitbelow = true      -- Put new windows below current
39 38
vim.opt.splitkeep = "screen"