Skip to content

ides-editors: add a new section in Zed docs #393

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions web/docs/ides-editors.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ To add the MSYS2 terminal profile in Sublime Text, please follow these steps:

Add these lines to your `settings.json`:

```jsonc
```json
{
"terminal.integrated.profiles.windows": {
"MSYS2 UCRT": {
Expand All @@ -65,11 +65,11 @@ Now the `MSYS2 UCRT` profile is available when launching a terminal.

[Zed](https://zed.dev/) is a text and source code editor. Its syntax
highlighting and source parsing is based on tree-sitter library. Editor uses
Vulkan as GUI backend to have highest performance among other editors. Zed
GPU acceleration to have highest performance among other editors. Zed
package provides `zeditor` CLI installed under bin/ directory and `zed-editor`
executable installed under lib/zed/ directory. To use MSYS2 shell in integrated
terminal, press Ctrl + , to open settings, then put these lines in the opened
file
file. This is an example given for UCRT64 environment.

```json
{
Expand All @@ -85,3 +85,15 @@ file
```

Now UCRT64 shell will be opened if you press Ctrl + ~.

### AMD GPU support

Starting with v0.198.x, Zed uses DirectX GUI backend. For AMD GPUs users it's
highly recommended to install AMD AGS library to get fully featured support.
You may install it with this command:

```bash
curl --fail --location --output "$MINGW_PREFIX/lib/zed/amd_ags_x64.dll" https://github.com/GPUOpen-LibrariesAndSDKs/AGS_SDK/raw/v$VERSION/ags_lib/lib/amd_ags_x64.dll
```

$VERSION can be got from post upgrade message or from [upstream source](https://github.com/search?q=repo%3Azed-industries%2Fzed+DownloadAMDGpuServices&type=code)