nvim: after/ftplugin/diff: spell is window local & not buffer local

This commit is contained in:
Sanchayan Maity 2023-01-18 17:53:46 +05:30
parent c0e0387cac
commit f3190ffa0b
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
vim.bo.spell = false
vim.wo.spell = false
vim.keymap.set('n', '[c', "?^@@<CR>", { noremap=true, silent=true, buffer=0 })
vim.keymap.set('n', ']c', "/^@@<CR>", { noremap=true, silent=true, buffer=0 })