update nerdfont icon

This commit is contained in:
asep.komarudin 2024-04-15 17:15:47 +07:00
parent 4ce5f82265
commit c651a8ca42
2 changed files with 31 additions and 1 deletions

View file

@ -133,7 +133,7 @@ nvim_tree.setup({
dotfiles = false,
git_clean = false,
no_buffer = false,
custom = { "node_modules", "\\.cache" },
custom = { "node_modules", "\\.cache", "\\.git" },
exclude = {},
},
filesystem_watchers = {

View file

@ -271,6 +271,12 @@ web_devicons.setup({
cterm_color = "240",
name = "prettierrc",
},
[".prettierrc.json"] = {
icon = prettier_icon,
color = "#ea5e5e",
cterm_color = "240",
name = "prettierrcjson",
},
[".prettierd"] = {
icon = prettier_icon,
color = "#ea5e5e",
@ -325,6 +331,12 @@ web_devicons.setup({
cterm_color = "240",
name = "eslintrc",
},
[".eslintrc.js"] = {
icon = "󰱺",
color = "#4746a8",
cterm_color = "240",
name = "eslintrcjs",
},
[".eslintignore"] = {
icon = "󰱺",
color = "#4746a8",
@ -361,6 +373,12 @@ web_devicons.setup({
cterm_color = "220",
name = "gitblameignorerevs",
},
[".gitmodules"] = {
icon = "󰊢",
color = "#0c343d",
cterm_color = "220",
name = "gitmodules",
},
[".mailmap"] = {
icon = "󰇮",
color = "#a0d0d0",
@ -427,6 +445,12 @@ web_devicons.setup({
cterm_color = "220",
name = "packagejson",
},
["package-lock.json"] = {
icon = "󰎙",
color = "#cc0000",
cterm_color = "220",
name = "packagelockjson",
},
[".gitignore"] = {
icon = "󰊢",
color = "#8ED6FB",
@ -445,5 +469,11 @@ web_devicons.setup({
cterm_color = "220",
name = "JSConfig",
},
[".gitlab-ci.yml"] = {
icon = "",
color = "#F14C28",
cterm_color = "220",
name = "gitlabciyaml",
},
},
})