Skip to content

Commit

Permalink
fix(neo-tree): disable foldcolumn in neo-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 1, 2024
1 parent 0f94bcd commit 61e05d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/astronvim/plugins/neo-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,10 @@ return {
event_handlers = {
{
event = "neo_tree_buffer_enter",
handler = function(_) vim.opt_local.signcolumn = "auto" end,
handler = function(_)
vim.opt_local.signcolumn = "auto"
vim.opt_local.foldcolumn = "0"
end,
},
},
}
Expand Down

0 comments on commit 61e05d4

Please sign in to comment.