1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/nvim/lua/user/plugins/core.lua

28 lines
725 B
Lua

return {
{ import = "user.plugins.core.colorscheme" },
-- Icons
{
'nvim-tree/nvim-web-devicons',
opts = {
override = {
php = {
icon = "󰌟",
color = "#4F5B93",
name = "Php"
}
},
override_by_filename = {
["artisan"] = {
icon = "",
color = "#f05340",
name = "LaravelArtisan"
},
["phpunit.xml"] = {
icon = "󰙨",
color = "#0d6efd",
name = "PhpUnit"
}
}
}
}
}