2019-04-06 00:38:46 -04:00
#+TITLE : tools/lsp
#+DATE : March 05, 2019
#+SINCE : v2.1
#+STARTUP : inlineimages
* Table of Contents :TOC_3:noexport:
- [[#description ][Description ]]
- [[#module-flags ][Module Flags ]]
- [[#plugins ][Plugins ]]
- [[#prerequisites ][Prerequisites ]]
- [[#features ][Features ]]
2019-12-20 00:49:27 +01:00
- [[#lsp-powered-project-search ][LSP-powered project search ]]
2020-08-23 21:36:42 -04:00
- [[#differences-between-eglot-and-lsp-mode ][Differences between eglot and lsp-mode ]]
2019-04-06 00:38:46 -04:00
- [[#configuration ][Configuration ]]
- [[#troubleshooting ][Troubleshooting ]]
2020-08-23 21:36:42 -04:00
- [[#my-language-server-is-not-found ][My language server is not found ]]
- [[#lspeglot-is-not-started-automatically-in-my-buffer ][LSP/Eglot is not started automatically in my buffer ]]
2019-04-06 00:38:46 -04:00
* Description
2019-10-26 04:05:34 -04:00
This module integrates [[https://langserver.org/ ][language servers ]] into Doom Emacs. They provide features
2019-04-06 00:38:46 -04:00
you'd expect from IDEs, like code completion, realtime linting, language-aware
imenu/xref integration, jump-to-definition/references support, and more.
2019-10-26 04:05:34 -04:00
To get LSP working, you'll need to do three things:
2019-04-06 00:38:46 -04:00
2019-10-26 04:05:34 -04:00
1. Enable this module,
2. Install a language server appropriate for your targeted language(s) (you'll
2019-04-06 00:38:46 -04:00
find a table mapping languages to available servers [[https://github.com/emacs-lsp/lsp-mode#supported-languages][in the lsp-mode project
README]]).
2019-10-26 04:05:34 -04:00
3. Enable the =+lsp= flag on the =:lang= modules you want to enable LSP support
for. If your language's module doesn't have LSP support, and you know it can
(or should), please let us know! In the meantime, you must configure it
yourself (described in the Configuration section).
2019-04-06 00:38:46 -04:00
2019-04-08 23:02:50 -04:00
As of this writing, this is the state of LSP support in Doom Emacs:
2019-04-06 00:38:46 -04:00
| Module | Major modes | Default language server |
|------------------+---------------------------------------------------------+---------------------------------------------------------------|
| [[../../lang/cc/README.org][:lang cc]] | c-mode, c++-mode, objc-mode | ccls |
2020-07-18 02:15:33 +02:00
| [[../../lang/clojure/README.org][:lang clojure]] | clojure-mode | clojure-lsp |
2019-10-26 04:05:34 -04:00
| [[../../lang/csharp/README.org][:lang csharp]] | csharp-mode | omnisharp |
2019-07-26 21:32:20 +03:00
| [[../../lang/elixir/README.org][:lang elixir]] | elixir-mode | elixir-ls |
2019-10-26 04:05:34 -04:00
| [[../../lang/fsharp/README.org][:lang fsharp]] | fsharp-mode | Mono, .NET core |
2019-04-06 00:38:46 -04:00
| [[../../lang/go/README.org][:lang go]] | go-mode | go-langserver |
2020-09-24 23:15:37 +08:00
| [[../../lang/haskell/README.org][:lang haskell]] | haskell-mode | haskell-language-server |
2019-04-06 00:38:46 -04:00
| [[../../lang/java/README.org][:lang java]] | java-mode | lsp-java |
2019-10-26 04:05:34 -04:00
| [[../../lang/javascript/README.org][:lang javascript]] | js2-mode, rjsx-mode, typescript-mode | typescript-language-server |
2021-03-02 04:25:35 +01:00
| [[../../lang/julia/README.org][:lang julia]] | julia-mode | LanguageServer.jl |
2020-02-24 10:57:06 +01:00
| [[../../lang/ocaml/README.org][:lang ocaml]] | tuareg-mode | ocaml-language-server |
2019-04-06 00:38:46 -04:00
| [[../../lang/php/README.org][:lang php]] | php-mode | php-language-server |
| [[../../lang/python/README.org][:lang python]] | python-mode | lsp-python-ms |
2020-03-12 11:29:54 -04:00
| [[../../lang/ruby/README.org][:lang ruby]] | ruby-mode | solargraph |
2019-04-06 00:38:46 -04:00
| [[../../lang/rust/README.org][:lang rust]] | rust-mode | rls |
2019-10-26 04:05:34 -04:00
| [[../../lang/scala/README.org][:lang scala]] | scala-mode | metals |
2019-04-06 00:38:46 -04:00
| [[../../lang/sh/README.org][:lang sh]] | sh-mode | bash-language-server |
2019-10-26 04:05:34 -04:00
| [[../../lang/swift/README.org][:lang swift]] | swift-mode | sourcekit |
2019-04-06 00:38:46 -04:00
| [[../../lang/web/README.org][:lang web]] | web-mode, css-mode, scss-mode, sass-mode, less-css-mode | vscode-css-languageserver-bin, vscode-html-languageserver-bin |
2020-05-13 17:39:56 +09:00
| [[../../lang/purescript/README.org][:lang purescript]] | purescript-mode | purescript-language-server |
2021-04-05 16:18:30 +08:00
| [[../../lang/zig/README.org][:lang zig]] | zig-mode | zls |
2019-04-06 00:38:46 -04:00
** Module Flags
2020-03-27 01:25:30 -04:00
+ =+peek= Use =lsp-ui-peek= when looking up definitions and references with
functionality from the =:tools lookup= module.
2020-05-01 11:01:11 +02:00
+ =+eglot= Use [[https://elpa.gnu.org/packages/eglot.html ][Eglot ]] instead of [[https://github.com/emacs-lsp/lsp-mode ][LSP-mode ]] to implement the LSP client in
Emacs.
2019-04-06 00:38:46 -04:00
** Plugins
+ [[https://github.com/emacs-lsp/lsp-mode ][lsp-mode ]]
+ [[https://github.com/emacs-lsp/lsp-ui ][lsp-ui ]]
2021-05-17 16:17:40 +03:00
+ [[https://github.com/emacs-lsp/lsp-ivy ][lsp-ivy ]] (=:completion ivy= )
+ [[https://github.com/emacs-lsp/helm-lsp ][helm-lsp ]] (=:completion helm= )
+ [[https://github.com/gagbo/consult-lsp ][consult-lsp ]] (=:completion selectrum= )
2020-05-01 11:01:11 +02:00
+ [[https://github.com/joaotavora/eglot ][eglot ]]
2019-04-06 00:38:46 -04:00
* Prerequisites
2020-10-11 18:13:59 -04:00
This module has no direct prerequisites, but different languages will need
different language servers, which =lsp-mode= will prompt you to auto-install.
=eglot= will not.
2019-04-06 00:38:46 -04:00
2020-10-11 18:13:59 -04:00
A table that lists available language servers and how to install them can be
found [[https://emacs-lsp.github.io/lsp-mode/page/languages/ ][on the lsp-mode project README ]]. The documentation of the module for your
2019-04-06 00:38:46 -04:00
targeted language will contain brief instructions as well.
2020-10-11 18:13:59 -04:00
For eglot users, a list of [[https://github.com/joaotavora/eglot/blob/master/README.md#connecting-to-a-server ][default servers supported is on Eglot's README ]],
including instructions to register your own.
2020-05-01 11:01:11 +02:00
2019-04-06 00:38:46 -04:00
* TODO Features
2019-12-20 00:49:27 +01:00
** LSP-powered project search
2021-05-17 16:17:40 +03:00
Without the =+eglot= flag, and when =:completion ivy= , =:completion helm= or
=:completion selectrum= is active, LSP is used to search a symbol indexed by the
LSP server :
2019-12-20 00:49:27 +01:00
| Keybind | Description |
|-----------+-------------------------------------|
| =SPC c j= | Jump to symbol in current workspace |
| =SPC c J= | Jump to symbol in any workspace |
2020-08-22 15:31:38 -04:00
2020-05-01 11:01:11 +02:00
** Differences between eglot and lsp-mode
Entering the debate about which one to use would be useless. Doom provides an
easy way to switch out lsp client implementations so you can test for yourself
which one you prefer.
Mainly, from a code point of view, lsp-mode has a lot of custom code for UI
(=lsp-ui-peek= , =lsp-ui-sideline= , ...), while eglot is more barebones with a
closer integration with "more basic" emacs packages (=eldoc= , =xref= , ...).
2019-04-06 00:38:46 -04:00
* TODO Configuration
* TODO Troubleshooting
2020-05-01 11:01:11 +02:00
** My language server is not found
Check the entry in the [[../../../docs/faq.org ][FAQ ]] about "Doom can't find my executables/doesn't inherit
the correct ~PATH~ "
2020-08-22 15:31:38 -04:00
2020-05-01 11:01:11 +02:00
** LSP/Eglot is not started automatically in my buffer
Make sure that you added the =+lsp= flag to the language you're using too in
your init.el :
#+BEGIN_SRC diff
:lang
-python
+(python +lsp)
#+END_SRC