16 lines
348 B
Lua
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",
|
|
},
|
|
},
|
|
},
|
|
}
|