We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7c1568 + c41742a commit afd0d82Copy full SHA for afd0d82
README.md
@@ -168,6 +168,18 @@ Add the configuration to your `.emacs.d/init.el`
168
(sh-mode . lsp))
169
```
170
171
+Using the built-in `eglot` lsp mode:
172
+
173
+```emacs-lisp
174
+(use-package eglot
175
+ :config
176
+ (add-to-list 'eglot-server-programs '((sh-mode bash-ts-mode) . ("bash-language-server" "start")))
177
178
+ :hook
179
+ (sh-mode . eglot-ensure)
180
+ (bash-ts-mode . eglot-ensure))
181
+```
182
183
## Logging
184
185
The minimum logging level for the server can be adjusted using the `BASH_IDE_LOG_LEVEL` environment variable
0 commit comments