From 927135a06c2faa6182bf6c827f87adbf0f406895 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 22 Nov 2024 10:00:18 +0100 Subject: [PATCH] nvim/lua/user/plugins/core.lua: use icons from icons config --- nvim/lua/user/plugins/core.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nvim/lua/user/plugins/core.lua b/nvim/lua/user/plugins/core.lua index b141131..0f061d7 100644 --- a/nvim/lua/user/plugins/core.lua +++ b/nvim/lua/user/plugins/core.lua @@ -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" }