mirror of
https://github.com/pnx/dotfiles
synced 2026-08-27 05:08:13 +02:00
nvim/lua/user/plugins/ui/colorscheme.lua: update
This commit is contained in:
parent
069e6866e9
commit
4620d33296
2 changed files with 26 additions and 6 deletions
|
|
@ -127,6 +127,9 @@ local custom_highlights = function(colors)
|
||||||
BlinkCmpKindOperator = { link = "CmpItemKindOperator" },
|
BlinkCmpKindOperator = { link = "CmpItemKindOperator" },
|
||||||
BlinkCmpKindTypeParameter = { link = "CmpItemKindTypeParameter" },
|
BlinkCmpKindTypeParameter = { link = "CmpItemKindTypeParameter" },
|
||||||
|
|
||||||
|
-- DAP
|
||||||
|
DapStopped = { fg = colors.yellow },
|
||||||
|
|
||||||
-- Neotest
|
-- Neotest
|
||||||
NeoTestWinSelect = { fg = colors.mauve },
|
NeoTestWinSelect = { fg = colors.mauve },
|
||||||
NeoTestIndent = { fg = colors.surface1 },
|
NeoTestIndent = { fg = colors.surface1 },
|
||||||
|
|
@ -203,6 +206,7 @@ local custom_highlights = function(colors)
|
||||||
["@comment.warning"] = { link = "@Comment" },
|
["@comment.warning"] = { link = "@Comment" },
|
||||||
["@comment.todo"] = { link = "@Comment" },
|
["@comment.todo"] = { link = "@Comment" },
|
||||||
["@comment.note.comment"] = { link = "@Comment" },
|
["@comment.note.comment"] = { link = "@Comment" },
|
||||||
|
["@number.comment"] = { fg = colors.green },
|
||||||
|
|
||||||
-- LSP
|
-- LSP
|
||||||
["@lsp.type.property"] = { link = "@variable" },
|
["@lsp.type.property"] = { link = "@variable" },
|
||||||
|
|
|
||||||
16
phpactor/templates/laravel-facade/SourceCode.php.twig
Normal file
16
phpactor/templates/laravel-facade/SourceCode.php.twig
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace {{ prototype.namespace }};
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
||||||
|
{% for class in prototype.classes %}
|
||||||
|
class {{ class.name }} extends Facade
|
||||||
|
{
|
||||||
|
protected static function getFacadeAccessor()
|
||||||
|
{
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue