2019-02-21 16:08:27 -05:00
|
|
|
;;; tools/lsp/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
2019-02-26 22:57:34 -05:00
|
|
|
(setq lsp-session-file (concat doom-etc-dir "lsp-session")
|
|
|
|
lsp-auto-guess-root t
|
|
|
|
lsp-keep-workspace-alive nil)
|
2019-02-24 13:49:12 -05:00
|
|
|
|
2019-04-16 20:21:13 -04:00
|
|
|
(after! lsp-mode
|
2019-05-03 20:03:32 -04:00
|
|
|
(set-lookup-handlers! 'lsp-mode :async t
|
|
|
|
:documentation 'lsp-describe-thing-at-point)
|
2019-04-16 20:21:13 -04:00
|
|
|
|
|
|
|
;; Don't prompt to restart LSP servers while quitting Emacs
|
|
|
|
(add-hook! 'kill-emacs-hook (setq lsp-restart 'ignore)))
|
2019-02-28 05:01:40 -05:00
|
|
|
|
2019-02-24 13:49:12 -05:00
|
|
|
|
2019-02-21 16:08:27 -05:00
|
|
|
(def-package! lsp-ui
|
|
|
|
:hook (lsp-mode . lsp-ui-mode)
|
|
|
|
:config
|
|
|
|
(setq lsp-prefer-flymake nil
|
|
|
|
lsp-ui-doc-max-height 8
|
|
|
|
lsp-ui-doc-max-width 35
|
|
|
|
lsp-ui-sideline-ignore-duplicate t)
|
2019-04-16 20:21:13 -04:00
|
|
|
|
2019-05-03 20:03:32 -04:00
|
|
|
(set-lookup-handlers! 'lsp-ui-mode :async t
|
|
|
|
:definition 'lsp-ui-peek-find-definitions
|
|
|
|
:references 'lsp-ui-peek-find-references))
|
2019-02-21 16:08:27 -05:00
|
|
|
|
2019-02-24 13:49:12 -05:00
|
|
|
|
2019-02-21 16:08:27 -05:00
|
|
|
(def-package! company-lsp
|
|
|
|
:when (featurep! :completion company)
|
|
|
|
:after lsp-mode
|
|
|
|
:config
|
|
|
|
(set-company-backend! 'lsp-mode 'company-lsp))
|