From f6e0aff4356dc2598966657895c777e6bea23d54 Mon Sep 17 00:00:00 2001 From: "Vito G. Graffagnino" Date: Fri, 22 Jul 2022 10:37:14 +0100 Subject: Changes to create unbreakable IDE part 1 from chris@machine --- lua/user/nvim-webdev-icons.lua | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 lua/user/nvim-webdev-icons.lua (limited to 'lua/user/nvim-webdev-icons.lua') 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", + }, +} -- cgit v1.2.3