mirror of
https://github.com/pnx/dotfiles
synced 2026-06-18 12:00:02 +02:00
nvim: add config for devicons
This commit is contained in:
parent
7876215489
commit
76510ad49c
1 changed files with 33 additions and 0 deletions
33
nvim/lua/user/plugins/core.lua
Normal file
33
nvim/lua/user/plugins/core.lua
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
return {
|
||||||
|
{ import = "user.plugins.core.colorscheme" },
|
||||||
|
-- Icons
|
||||||
|
{
|
||||||
|
'nvim-tree/nvim-web-devicons',
|
||||||
|
opts = {
|
||||||
|
override = {
|
||||||
|
php = {
|
||||||
|
icon = "",
|
||||||
|
color = "#4F5B93",
|
||||||
|
name = "Php"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
override_by_filename = {
|
||||||
|
["artisan"] = {
|
||||||
|
icon = "",
|
||||||
|
color = "#f05340",
|
||||||
|
name = "LaravelArtisan"
|
||||||
|
},
|
||||||
|
["phpunit.xml"] = {
|
||||||
|
icon = "",
|
||||||
|
color = "#0d6efd",
|
||||||
|
name = "PhpUnit"
|
||||||
|
},
|
||||||
|
-- ["composer.json"] = {
|
||||||
|
-- icon = "",
|
||||||
|
-- color = "#9e9e9e",
|
||||||
|
-- name = "Composer"
|
||||||
|
-- }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue