home: vim: signtoggle: fix toggling

Don't know how I missed this for so long...
This commit is contained in:
Bruno BELANYI 2024-07-15 20:34:09 +01:00
parent bb8f25e130
commit 5ddb72e6c0

View file

@ -9,7 +9,7 @@ vim.api.nvim_create_autocmd({ "BufEnter", "FocusGained", "WinEnter" }, {
vim.api.nvim_create_autocmd({ "BufLeave", "FocusLost", "WinLeave" }, {
pattern = "*",
group = signtoggle,
command = "setlocal signcolumn=yes",
command = "setlocal signcolumn=no",
})
-- Never show the sign column in a terminal buffer