mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
11 lines
230 B
Lua
11 lines
230 B
Lua
-- nvim-web-devicons
|
|
-- https://github.com/kyazdani42/nvim-web-devicons
|
|
|
|
local status, web_devicons = pcall(require, 'nvim-web-devicons')
|
|
if (not status) then return end
|
|
|
|
web_devicons.setup({
|
|
override = {},
|
|
default = true,
|
|
})
|