mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
19 lines
323 B
EmacsLisp
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
|