From 7211afd592f52a30bfb840e90580e63a806eca22 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Wed, 27 Aug 2025 11:31:03 +0200 Subject: [PATCH] Configure PHP and inlay hints in Zed editor Enable inlay hints and add PHP language server config with license key placeholder --- zed/settings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/zed/settings.json b/zed/settings.json index 6b6bc63..63d9f92 100644 --- a/zed/settings.json +++ b/zed/settings.json @@ -58,6 +58,10 @@ "ensure_final_newline_on_save": true, "format_on_save": "prettier", "tab_size": 2, + "inlay_hints": { + "enabled": true, + "show_parameter_hints": true + }, // ############################################# // ## AI Stuff ## @@ -99,10 +103,21 @@ // ## Languages ## // ############################################# "languages": { + "PHP": { + "language_servers": ["phptools"] + }, "Dart": { "code_actions_on_format": { "source.organizeImports": true } } + }, + + "lsp": { + "phptools": { + "initialization_options": { + "0": "" + } + } } }