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:
parent
4b0d9cb482
commit
927135a06c
1 changed files with 5 additions and 3 deletions
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue