2019-02-21 16:08:27 -05:00
|
|
|
;;; tools/lsp/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
2020-04-01 13:57:04 -04:00
|
|
|
(defvar +lsp-defer-shutdown 3
|
|
|
|
"If non-nil, defer shutdown of LSP servers for this many seconds after last
|
|
|
|
workspace buffer is closed.
|
|
|
|
|
|
|
|
This delay prevents premature server shutdown when a user still intends on
|
|
|
|
working on that project after closing the last buffer.")
|
|
|
|
|
2020-05-28 15:30:20 -04:00
|
|
|
|
|
|
|
;;
|
|
|
|
;;; Implementations
|
|
|
|
|
2020-05-28 11:03:49 +02:00
|
|
|
(if (featurep! +eglot)
|
2020-05-28 13:13:00 +02:00
|
|
|
(load! "+eglot")
|
|
|
|
(load! "+lsp"))
|