removed spelling in terminal

This commit is contained in:
gyoder 2025-07-09 12:34:52 -06:00
parent dc21944ad2
commit a4b47f24bf

View file

@ -51,6 +51,11 @@ end
vim.opt.spell = true vim.opt.spell = true
vim.opt.spelllang = "en_us" vim.opt.spelllang = "en_us"
vim.api.nvim_create_autocmd("TermOpen", {
pattern = "*",
callback = function()
vim.opt_local.spell = false
end,
})