cool nvim stuff

This commit is contained in:
Niktia Bykov
2024-01-02 22:38:47 +05:00
parent b6aae4722c
commit 66d4df92ab
20 changed files with 361 additions and 124 deletions

View File

@ -69,5 +69,13 @@ require("neo-tree").setup({
{ source = "git_status", display_name = " 󰊢 Git " },
},
},
-- Other options ...
event_handlers = {
{
event = "neo_tree_buffer_enter",
handler = function(arg)
vim.opt.relativenumber = true
end,
}
},
})