1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-07-04 07:13:40 +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 { return {
{ import = "user.plugins.core.colorscheme" }, { import = "user.plugins.core.colorscheme" },
{ {
@ -43,19 +45,19 @@ return {
opts = { opts = {
override = { override = {
php = { php = {
icon = "󰌟", icon = icons.filetypes.php,
color = "#4F5B93", color = "#4F5B93",
name = "Php" name = "Php"
} }
}, },
override_by_filename = { override_by_filename = {
["artisan"] = { ["artisan"] = {
icon = "", icon = icons.filetypes.laravel,
color = "#f05340", color = "#f05340",
name = "LaravelArtisan" name = "LaravelArtisan"
}, },
["phpunit.xml"] = { ["phpunit.xml"] = {
icon = "󰙨", icon = icons.filetypes.phpunit,
color = "#0d6efd", color = "#0d6efd",
name = "PhpUnit" name = "PhpUnit"
} }