Files
AstroConfig/lua/plugins/16-commands.lua
2023-12-09 23:30:29 +01:00

16 lines
348 B
Lua

return {
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
commands = {
TermOpen = {
function()
vim.bo.number = false
vim.bo.spell = false
end,
desc = "Remove linenumber in term buffers",
},
},
},
}