From 0561e714bb476d936e51f6e49292542712255dec Mon Sep 17 00:00:00 2001 From: Leander <80996591+m0ntagur@users.noreply.github.com> Date: Sat, 13 Aug 2022 00:31:07 +0200 Subject: Add files via upload --- nvim/plugin/web-devicons.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nvim/plugin/web-devicons.lua (limited to 'nvim/plugin/web-devicons.lua') diff --git a/nvim/plugin/web-devicons.lua b/nvim/plugin/web-devicons.lua new file mode 100644 index 0000000..536b57f --- /dev/null +++ b/nvim/plugin/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 +} -- cgit v1.3.1