summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/tree.lua
diff options
context:
space:
mode:
author2025-04-21 15:15:42 +0300
committer2025-04-21 15:15:42 +0300
commit4d3bb0270aa6e76131fb12c191a07fde8cd819fe (patch)
tree400c190efd8944d95c67a73012180439949b97a7 /nvim/lua/plugins/tree.lua
parent20.05.2025 - 2 (diff)
downloaddotfiles-4d3bb0270aa6e76131fb12c191a07fde8cd819fe.tar.gz
dotfiles-4d3bb0270aa6e76131fb12c191a07fde8cd819fe.tar.bz2
dotfiles-4d3bb0270aa6e76131fb12c191a07fde8cd819fe.tar.xz
dotfiles-4d3bb0270aa6e76131fb12c191a07fde8cd819fe.zip
Привёл nvim к достаточному состоянию
Diffstat (limited to '')
-rw-r--r--nvim/lua/plugins/tree.lua15
1 files changed, 14 insertions, 1 deletions
diff --git a/nvim/lua/plugins/tree.lua b/nvim/lua/plugins/tree.lua
index cea966e..320849b 100644
--- a/nvim/lua/plugins/tree.lua
+++ b/nvim/lua/plugins/tree.lua
@@ -5,10 +5,23 @@ require("nvim-tree").setup({
view = {
width = 30,
},
+ git = {
+ enable = true,
+ },
renderer = {
group_empty = true,
+ highlight_git = true,
+ icons = {
+ show = {
+ git = true,
+ },
+ },
},
filters = {
- dotfiles = true,
+ dotfiles = false,
+ },
+ update_focused_file = {
+ enable = true,
+ update_root = false,
},
})