Add helm-lsp package

This commit is contained in:
2019-04-29 13:22:49 +01:00
parent a4d5c15995
commit a65fc41b2c
3 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
;;; 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