diff options
| author | 2025-04-21 15:15:42 +0300 | |
|---|---|---|
| committer | 2025-04-21 15:15:42 +0300 | |
| commit | 4d3bb0270aa6e76131fb12c191a07fde8cd819fe (patch) | |
| tree | 400c190efd8944d95c67a73012180439949b97a7 /nvim/lua/plugins/tree.lua | |
| parent | 20.05.2025 - 2 (diff) | |
| download | dotfiles-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.lua | 15 |
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, }, }) |
