blob: 536b57f899067c0bd4eaef3f647c11769c6a9445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
}
|