Files
.emacs.d/modules/lsp/siren-helm-lsp.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

21 lines
422 B
EmacsLisp

;;; siren-helm-lsp.el --- jimeh's Emacs Siren: helm-lsp configuration.
;;; Commentary:
;; Basic configuration for helm-lsp.
;;; Code:
(require 'siren-helm)
(require 'siren-lsp)
(use-package helm-lsp
:after (helm-global-bindings)
:general
("C-c '" 'helm-lsp-workspace-symbol)
("C-c C-'" 'helm-lsp-workspace-symbol)
("C-c \\" 'helm-lsp-diagnostics))
(provide 'siren-helm-lsp)
;;; siren-helm-lsp.el ends here