diff options
Diffstat (limited to 'lua/user/nvim-webdev-icons.lua')
| -rw-r--r-- | lua/user/nvim-webdev-icons.lua | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/lua/user/nvim-webdev-icons.lua b/lua/user/nvim-webdev-icons.lua new file mode 100644 index 0000000..85cd308 --- /dev/null +++ b/lua/user/nvim-webdev-icons.lua @@ -0,0 +1,49 @@ +local status_ok, nvim_web_devicons = pcall(require, "nvim-web-devicons") +if not status_ok then + return +end + +nvim_web_devicons.set_icon { + sh = { + icon = "", + color = "#1DC123", + cterm_color = "59", + name = "Sh", + }, + [".gitattributes"] = { + icon = "", + color = "#e24329", + cterm_color = "59", + name = "GitAttributes", + }, + [".gitconfig"] = { + icon = "", + color = "#e24329", + cterm_color = "59", + name = "GitConfig", + }, + [".gitignore"] = { + icon = "", + color = "#e24329", + cterm_color = "59", + name = "GitIgnore", + }, + [".gitlab-ci.yml"] = { + icon = "", + color = "#e24329", + cterm_color = "166", + name = "GitlabCI", + }, + [".gitmodules"] = { + icon = "", + color = "#e24329", + cterm_color = "59", + name = "GitModules", + }, + ["diff"] = { + icon = "", + color = "#e24329", + cterm_color = "59", + name = "Diff", + }, +} |
