File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ The following editors and IDEs have available clients:
37
37
- Neovim ([ see below] ( #neovim ) )
38
38
- [ Oni] ( https://github.com/onivim/oni ) ([ see below] ( #oni ) )
39
39
- Eclipse ([ ShellWax] ( https://marketplace.eclipse.org/content/shellwax ) )
40
+ - Emacs ([ see below] ( #emacs ) )
40
41
41
42
#### Vim
42
43
@@ -94,6 +95,18 @@ On the config file (`File -> Preferences -> Edit Oni config`) add the following
94
95
" language.bash.languageServer.arguments" : [" start" ],
95
96
```
96
97
98
+ #### Emacs
99
+
100
+ [ Lsp-mode] ( https://github.com/emacs-lsp/lsp-mode ) has a built-in client, can be installed by ` use-package ` .
101
+ Add the configuration to your ` .emacs.d/init.el `
102
+
103
+ ``` emacs-lisp
104
+ (use-package lsp-mode
105
+ :commands lsp
106
+ :hook
107
+ (sh-mode . lsp))
108
+ ```
109
+
97
110
## Development Guide
98
111
99
112
Please see [ docs/development-guide] [ dev-guide ] for more information.
You can’t perform that action at this time.
0 commit comments