aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/ui.lua
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-02-12 15:34:09 +0100
committerThomas Schmucker <ts@its1.de>2026-02-12 15:34:09 +0100
commitc0696951db95b14fe561f82c7128b105adee9718 (patch)
treee3da9262b14f2de86bfb55efa03e6735bd5a6f93 /nvim/lua/plugins/ui.lua
parent3fd9d29ce2368d7dbeb5dfe24a50b67931852f8b (diff)
downloaddotfiles-c0696951db95b14fe561f82c7128b105adee9718.tar.gz
dotfiles-c0696951db95b14fe561f82c7128b105adee9718.tar.bz2
dotfiles-c0696951db95b14fe561f82c7128b105adee9718.zip
Neovim: Aktuell geffnete Datei soll im File-Explorer anzeigt werden
Diffstat (limited to 'nvim/lua/plugins/ui.lua')
-rw-r--r--nvim/lua/plugins/ui.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/nvim/lua/plugins/ui.lua b/nvim/lua/plugins/ui.lua
index 10c4762..f1ca409 100644
--- a/nvim/lua/plugins/ui.lua
+++ b/nvim/lua/plugins/ui.lua
@@ -30,6 +30,11 @@ return {
30 }, 30 },
31 config = function() 31 config = function()
32 require("nvim-tree").setup({ 32 require("nvim-tree").setup({
33 update_focused_file = {
34 enable = true,
35 update_root = false,
36 ignore_list = {},
37 },
33 view = { 38 view = {
34 width = 30, 39 width = 30,
35 }, 40 },
@@ -54,5 +59,4 @@ return {
54 "RRethy/vim-illuminate", 59 "RRethy/vim-illuminate",
55 event = "BufReadPost", 60 event = "BufReadPost",
56 }, 61 },
57
58} 62}