From 97b7413b71b8bb657f9a245580c919616bb271ff Mon Sep 17 00:00:00 2001 From: jsasg <735273025@qq.com> Date: Thu, 20 Nov 2025 11:00:35 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- .zed/settings.json | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .zed/settings.json diff --git a/.gitignore b/.gitignore index 9c1c0de2..8e911dc0 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,8 @@ public/dist public/opendoc /.idea /.vscode +/.zed /vendor /.settings /.buildpath -/.project \ No newline at end of file +/.project diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 00000000..01ed5113 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,24 @@ +// Folder-specific settings +// +// For a full list of overridable settings, and general information on folder-specific settings, +// see the documentation: https://zed.dev/docs/configuring-zed#settings-files +{ + "languages": { + "PHP": { + "language_servers": ["intelephense","!phpactor"] + } + }, + "lsp": { + "intelephense": { + "initialization_options": { + "stubs": [ + "wordpress", + "laravel", + "symfony", + "codeigniter", + "thinkphp" + ] + } + } + } +}