File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ To add the MSYS2 terminal profile in Sublime Text, please follow these steps:
45
45
46
46
Add these lines to your ` settings.json ` :
47
47
48
- ``` jsonc
48
+ ``` json
49
49
{
50
50
"terminal.integrated.profiles.windows" : {
51
51
"MSYS2 UCRT" : {
@@ -65,11 +65,11 @@ Now the `MSYS2 UCRT` profile is available when launching a terminal.
65
65
66
66
[ Zed] ( https://zed.dev/ ) is a text and source code editor. Its syntax
67
67
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
69
69
package provides ` zeditor ` CLI installed under bin/ directory and ` zed-editor `
70
70
executable installed under lib/zed/ directory. To use MSYS2 shell in integrated
71
71
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.
73
73
74
74
``` json
75
75
{
85
85
```
86
86
87
87
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 )
You can’t perform that action at this time.
0 commit comments