Files
.emacs.d/modules/lsp/siren-helm-lsp.el
2019-04-29 13:22:49 +01:00

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