🐛 fix(nvim): disable spelling on terminal buffers

This commit is contained in:
Sergio Laín 2024-03-10 14:09:04 +01:00
parent 0d4e28bd88
commit 23df7e331b
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -67,6 +67,7 @@ ac("FileType", {
ac("TermOpen", { ac("TermOpen", {
callback = function() callback = function()
vim.cmd("setlocal listchars= nonumber norelativenumber") vim.cmd("setlocal listchars= nonumber norelativenumber")
vim.cmd("setlocal nospell")
end, end,
}) })