fix(neo-tree): set window options on source switching

This commit is contained in:
2025-04-15 22:56:40 +02:00
parent 6c3ac32a12
commit 31e30d2ef0
+12
View File
@@ -147,6 +147,18 @@ return {
end, end,
}, },
}, },
event_handlers = {
{
event = "neo_tree_window_after_open",
handler = function(event)
vim.api.nvim_set_option_value(
"signcolumn",
"no",
{ scope = "local", win = event.winid }
)
end,
},
},
}, },
init = toggle_neo_tree, init = toggle_neo_tree,
} }