Files
AstroConfig/lua/plugins/16-commands.lua
2024-01-28 11:41:35 +01:00

17 lines
366 B
Lua

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