diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-01-19 23:57:36 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-01-19 23:57:36 +0200 |
| commit | 12c283e9ebb12c4455776d003ca596be67a8eb99 (patch) | |
| tree | 8d25d8d50f6f81d466c541512fba31b0a8741324 | |
| parent | 8ed23db46c1f0a09000b6f13b61c43c561388ee4 (diff) | |
| download | dotfiles-12c283e9ebb12c4455776d003ca596be67a8eb99.tar.gz dotfiles-12c283e9ebb12c4455776d003ca596be67a8eb99.zip | |
Add zsh own icon
| -rw-r--r-- | lua/plugins/web-devicons.lua | 19 |
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 } |
