add local variable to keep consistent with the rest of my config

This commit is contained in:
2025-10-03 12:06:22 -04:00
parent 5db95236fd
commit 648aab0620
+5 -3
View File
@@ -1,8 +1,10 @@
vim.opt_local.textwidth = 78
vim.opt_local.spell = true
local o = vim.opt_local
o.textwidth = 78
o.spell = true
return {
require('cmp').setup.buffer({
sources = require('cmp').config.sources({ { name = 'gitmoji' } }, { { name = 'buffer' } }),
}),
}
}