Skip to content

Commit 8ff3bfc

Browse files
committed
ides-editors: add a new section in Zed docs
to match a requirement for an extra proprietary driver. fixed a VS Code setting while at it (there was no syntax highlighting in my localhost)
1 parent d78609a commit 8ff3bfc

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

web/docs/ides-editors.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To add the MSYS2 terminal profile in Sublime Text, please follow these steps:
4545

4646
Add these lines to your `settings.json`:
4747

48-
```jsonc
48+
```json
4949
{
5050
"terminal.integrated.profiles.windows": {
5151
"MSYS2 UCRT": {
@@ -65,11 +65,11 @@ Now the `MSYS2 UCRT` profile is available when launching a terminal.
6565

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

7474
```json
7575
{
@@ -85,3 +85,15 @@ file
8585
```
8686

8787
Now UCRT64 shell will be opened if you press Ctrl + ~.
88+
89+
### AMD GPU support
90+
91+
Starting with v0.198.x, Zed uses DirectX GUI backend. For AMD GPUs users it's
92+
highly recommended to install AMD AGS library to get fully featured support.
93+
You may install it with this command:
94+
95+
```bash
96+
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
97+
```
98+
99+
$VERSION can be got from post upgrade message or from [upstream source](https://github.com/search?q=repo%3Azed-industries%2Fzed+DownloadAMDGpuServices&type=code)

0 commit comments

Comments
 (0)