doomemacs/modules/tools/lsp/config.el

17 lines
410 B
EmacsLisp
Raw Normal View History

;;; tools/lsp/config.el -*- lexical-binding: t; -*-
2020-04-02 01:57:04 +08: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-29 03:30:20 +08:00
;;
;;; Implementations
(if (featurep! +eglot)
(load! "+eglot")
(load! "+lsp"))