aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/web-devicons.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/web-devicons.lua')
-rw-r--r--lua/plugins/web-devicons.lua19
1 files changed, 12 insertions, 7 deletions
diff --git a/lua/plugins/web-devicons.lua b/lua/plugins/web-devicons.lua
index b8396bc..2f68275 100644
--- a/lua/plugins/web-devicons.lua
+++ b/lua/plugins/web-devicons.lua
@@ -1,12 +1,17 @@
-local status, icons = pcall(require, "nvim-web-devicons")
-if (not status) then return end
-
-icons.setup {
- -- your personnal icons can go here (to override)
- -- DevIcon will be appended to `name`
+--local status, icons = pcall(require, "nvim-web-devicons")
+--if (not status) then return end
+--icons.setup {
+require'nvim-web-devicons'.setup {
override = {
+ zsh = {
+ icon = "",
+ color = "#428850",
+ cterm_color = "65",
+ name = "Zsh"
+ };
+ color_icons = true;
},
-- globally enable default icons (default to false)
-- will get overriden by `get_icons` option
- default = true
+ --default = true
}