diff options
| author | Leander <80996591+m0ntagur@users.noreply.github.com> | 2022-08-13 00:27:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-13 00:27:04 +0200 |
| commit | afbf49f0a65a0ea77ecba455f17f592efe3089d8 (patch) | |
| tree | 35a7a053f07b429fe9e5de920d51ae5a0431dc76 /web-devicons.lua | |
| parent | a61e457e4c14c7c16b9a545418e14722370dc10a (diff) | |
Add files via upload
Diffstat (limited to 'web-devicons.lua')
| -rw-r--r-- | web-devicons.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web-devicons.lua b/web-devicons.lua new file mode 100644 index 0000000..536b57f --- /dev/null +++ b/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
+}
|
