Break apart LSP setup into separate modules

This commit is contained in:
2019-04-29 13:22:05 +01:00
parent 92008c30ca
commit a4d5c15995
4 changed files with 41 additions and 11 deletions

View File

@@ -1,25 +0,0 @@
;;; siren-lsp.el --- jimeh's Emacs Siren: lsp-mode configuration.
;;; Commentary:
;; Basic configuration for lsp-mode.
;;; Code:
(require 'siren-company)
(use-package lsp-mode
:config
(require 'lsp-clients)
(setq lsp-eldoc-render-all nil))
(use-package company-lsp)
(use-package lsp-ui
:hook (lsp-mode . lsp-ui-mode)
:config
(setq lsp-ui-doc-enable nil
lsp-ui-sideline-enable nil))
(provide 'siren-lsp)
;;; siren-lsp.el ends here