2023-02-27 08:18:09 +07:00
|
|
|
local web_devicons_ok, web_devicons = pcall(require, "nvim-web-devicons")
|
|
|
|
if not web_devicons_ok then
|
2023-01-15 00:17:41 +07:00
|
|
|
return
|
|
|
|
end
|
2023-02-27 08:18:09 +07:00
|
|
|
|
|
|
|
local material_icon_ok, material_icon = pcall(require, "nvim-material-icon")
|
|
|
|
if not material_icon_ok then
|
|
|
|
return
|
|
|
|
end
|
2024-04-29 07:11:30 +07:00
|
|
|
material_icon.setup({
|
|
|
|
override = {},
|
|
|
|
})
|
2024-04-14 12:13:15 +07:00
|
|
|
|
2023-02-27 08:18:09 +07:00
|
|
|
web_devicons.setup({
|
|
|
|
override = material_icon.get_icons(),
|
2024-04-23 18:56:29 +07:00
|
|
|
override_by_filename = {},
|
2023-02-27 08:18:09 +07:00
|
|
|
})
|