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 5ffe2653c0
commit 280829b54f

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