aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/user/nvim-dev-icons.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/user/nvim-dev-icons.lua')
-rw-r--r--nvim/lua/user/nvim-dev-icons.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/nvim/lua/user/nvim-dev-icons.lua b/nvim/lua/user/nvim-dev-icons.lua
new file mode 100644
index 0000000..c4125c9
--- /dev/null
+++ b/nvim/lua/user/nvim-dev-icons.lua
@@ -0,0 +1,22 @@
+local M = {
+ "nvim-tree/nvim-web-devicons",
+ event = "VeryLazy",
+ commit = "0568104bf8d0c3ab16395433fcc5c1638efc25d4"
+}
+
+function M.config()
+ require("nvim-web-devicons").setup {
+ override = {
+ zsh = {
+ icon = "",
+ color = "#428850",
+ cterm_color = "65",
+ name = "Zsh",
+ },
+ },
+ color_icons = true,
+ default = true,
+ }
+end
+
+return M