set icon #178
set icon
#178
-
Hi,I want.zshrc_xuya_config to use the same icon as.zshrc.How should override be written?The second questionHow do I modify this?I need you help, thanks |
Beta Was this translation helpful? Give feedback.
Answered by
alex-courtis
Nov 26, 2022
Replies: 3 comments
-
I tried to change override but it didn't work |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can set that individual file to be a clone of .zshrc via something like: local icon, color, cterm_color = require'nvim-web-devicons'.get_icon_colors('.zshrc')
require('nvim-web-devicons').set_icon({
['.zshrc_xuya_co'] = {
icon = icon,
color = color,
cterm_color = cterm_color,
name = "Zshrc",
}
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gegoune
-
What do you want to modify? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set that individual file to be a clone of .zshrc via something like: