diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-07-22 10:37:14 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-07-22 10:37:14 +0100 |
| commit | f6e0aff4356dc2598966657895c777e6bea23d54 (patch) | |
| tree | b7ab1692faa0882b4bc12d685b0e2bca036aa654 /lua/user/nvim-webdev-icons.lua | |
| parent | 1afd76ff2fa2d7cfb408a78cd8e47209f0305a24 (diff) | |
Changes to create unbreakable IDE part 1 from chris@machine
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", + }, +} |
