Files
.emacs.d/modules/lsp/siren-helm-lsp.el

20 lines
386 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)
:bind
("C-c '" . helm-lsp-workspace-symbol)
("C-c C-'" . helm-lsp-workspace-symbol))
(provide 'siren-helm-lsp)
;;; siren-helm-lsp.el ends here