diff options
Diffstat (limited to 'lua/user/web-devicons.lua')
| -rw-r--r-- | lua/user/web-devicons.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/user/web-devicons.lua b/lua/user/web-devicons.lua new file mode 100644 index 0000000..b8396bc --- /dev/null +++ b/lua/user/web-devicons.lua @@ -0,0 +1,12 @@ +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` + override = { + }, + -- globally enable default icons (default to false) + -- will get overriden by `get_icons` option + default = true +} |
