Replies: 3 comments 2 replies
-
The symlink icon can be disabled by setting You can disable symlink source/arrow/target completely via |
Beta Was this translation helpful? Give feedback.
-
I see: the icon is still showing. This should meet your requirements: require("nvim-tree").setup({
renderer = {
icons = {
show = {
file = false,
folder = false,
folder_arrow = false,
git = false,
},
glyphs = {
symlink = "",
},
},
symlink_destination = false,
},
}) |
Beta Was this translation helpful? Give feedback.
-
Hi @alex-courtis, I am @Bonen0209. First of all, thanks for answering my question. The problem I try to discuss is that could we offer an option to turn off symlink icon like I will try my best to see if I can contribute this options to nvim-tree. |
Beta Was this translation helpful? Give feedback.
-
Description
Here is the minimum config of reproducing the errors.
After using this config, symlink's icons still show up like the picture down below.
Although I can disable symlink's icons manually by adding additional lines to the config, as shown below, it will be nice to have an option to disable symlink's icons.
Neovim version
Operating system and version
macOS 12.6
nvim-tree version
b01e7be
Minimal config
Steps to reproduce
nvim -nu /tmp/nvt-min.lua
Expected behavior
Actual behavior
Beta Was this translation helpful? Give feedback.
All reactions