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