Skip to content

Commit 474df09

Browse files
authored
docs/editor-setup.md: add kate editor (#695)
Added simple example to setup KDE Kate editor, using the supported LSP Client Plugin. Also added a link to the LSP Client Plugin documentation site for KDE and an example for the settings file path.
1 parent 7d19dfe commit 474df09

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

nixd/docs/editor-setup.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,21 @@ language-servers = ["nixd","nil"]
125125
command = "nixd"
126126
```
127127

128+
### KDE Kate
129+
Kate with [LSP Client Plugin:](https://docs.kde.org/stable5/en/kate/kate/kate-application-plugin-lspclient.html)
130+
#### /$HOME/$USER/.config/kate/lspclient/settings.json
131+
132+
```jsonc
133+
{
134+
"servers": {
135+
"nix": {
136+
"command": ["nixd"],
137+
"url": "https://github.com/nix-community/nixd",
138+
"highlightingModeRegex": "^Nix$"
139+
}
140+
}
141+
}
142+
```
128143
## Change the configuration.
129144

130145
Read the [configuration](configuration.md) docs here.

0 commit comments

Comments
 (0)