home: vim: signtoggle: remove 'TermOpen' event

It's now part of upstream's default setup.
This commit is contained in:
Bruno BELANYI 2025-04-14 10:19:57 +00:00
parent e82ae4a219
commit 67936af4c7

View file

@ -15,12 +15,3 @@ vim.api.nvim_create_autocmd({ "BufLeave", "FocusLost", "WinLeave" }, {
vim.opt.signcolumn = "no" vim.opt.signcolumn = "no"
end, end,
}) })
-- Never show the sign column in a terminal buffer
vim.api.nvim_create_autocmd({ "TermOpen" }, {
pattern = "*",
group = signtoggle,
callback = function()
vim.opt.signcolumn = "no"
end,
})