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

nvim/lua/user/plugins/core.lua: use icons from icons config

This commit is contained in:
Henrik Hautakoski 2024-11-22 10:00:18 +01:00
parent 4b0d9cb482
commit 927135a06c

View file

@ -1,3 +1,5 @@
local icons = require('user.icons')
return {
{ import = "user.plugins.core.colorscheme" },
{
@ -43,19 +45,19 @@ return {
opts = {
override = {
php = {
icon = "󰌟",
icon = icons.filetypes.php,
color = "#4F5B93",
name = "Php"
}
},
override_by_filename = {
["artisan"] = {
icon = "",
icon = icons.filetypes.laravel,
color = "#f05340",
name = "LaravelArtisan"
},
["phpunit.xml"] = {
icon = "󰙨",
icon = icons.filetypes.phpunit,
color = "#0d6efd",
name = "PhpUnit"
}