mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
24 lines
493 B
EmacsLisp
24 lines
493 B
EmacsLisp
;;; siren-lsp-ui.el --- jimeh's Emacs Siren: lsp-ui configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for lsp-ui.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-lsp)
|
|
|
|
(use-package lsp-ui
|
|
:defer t
|
|
:bind (:map lsp-ui-mode-map
|
|
("C-c C-d" . lsp-ui-doc-show)
|
|
("M-?" . lsp-ui-peek-find-references)
|
|
("C-c C-j" . lsp-ui-peek-find-definitions))
|
|
|
|
:custom
|
|
(lsp-ui-doc-enable nil)
|
|
(lsp-ui-sideline-enable nil))
|
|
|
|
(provide 'siren-lsp-ui)
|
|
;;; siren-lsp-ui.el ends here
|