Files
.emacs.d/modules/lsp/siren-lsp.el
Jim Myhrberg efecb5172c chore(startup): Make various modules more lazy-loaded
This should improve startup speed a little bit.
2020-03-15 02:44:46 +00:00

19 lines
323 B
EmacsLisp

;;; siren-lsp.el --- jimeh's Emacs Siren: lsp-mode configuration.
;;; Commentary:
;; Basic configuration for lsp-mode.
;;; Code:
(use-package lsp-mode
:defer t
:bind (:map lsp-mode-map
("C-c C-." . lsp-rename))
:custom
(lsp-eldoc-render-all nil))
(provide 'siren-lsp)
;;; siren-lsp.el ends here