diff options
author | CPea <[email protected]> | 2022-07-31 22:00:55 +0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-31 17:00:55 +0200 |
commit | d6c81db7f5e7b2627b95410fa0f05c0b11d66001 (patch) | |
tree | d235c35ad1f31b242a198021c32984eb04d634d9 | |
parent | d7da056d7a0a6a47c53f769d09781ee56ea7a7dd (diff) |
fix(nvimtree): remove `indent_markers` icons trailing space (#2854)
-rw-r--r-- | lua/lvim/core/nvimtree.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lua/lvim/core/nvimtree.lua b/lua/lvim/core/nvimtree.lua index 9d7ab069..15e80e85 100644 --- a/lua/lvim/core/nvimtree.lua +++ b/lua/lvim/core/nvimtree.lua @@ -68,9 +68,10 @@ function M.config() indent_markers = { enable = false, icons = { - corner = "└ ", - edge = "│ ", - none = " ", + corner = "└", + edge = "│", + item = "│", + none = " ", }, }, icons = { |