How to turn off some icons. #1597
-
I would like to turn-off all icons, except for folder icons. |
Beta Was this translation helpful? Give feedback.
Answered by
pynappo
Jan 26, 2025
Replies: 1 comment 3 replies
-
You can modify how each row of the tree is rendered by modifying the renderers table for each source (filesystem, git_status, etc). Omitting a component will prevent neo-tree from rendering. for example for filesystem: neo-tree.nvim/lua/neo-tree/defaults.lua Lines 305 to 307 in 60c8f77 comment out the icon line there and now icons won't be rendered for files in the filesystem source. it should look like: |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ChrisTaylorDeveloper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can modify how each row of the tree is rendered by modifying the renderers table for each source (filesystem, git_status, etc). Omitting a component will prevent neo-tree from rendering.
for example for filesystem:
neo-tree.nvim/lua/neo-tree/defaults.lua
Lines 305 to 307 in 60c8f77
comment out the icon line there and now icons won't be rendered for files in the filesystem source. it should look like: