mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-11 13:07:28 -05:00
Add lsp-ivy and helm-lsp when :tools lsp (#2162)
* Add lsp-ivy and helm-lsp when :tools lsp * Review - Move the packages to :tools lsp - Add bindings to config/+evil-bindings.el (no change to +emacs since there was no 'code' prefix) - Move README section - Move the packages to :tools lsp - Add bindings to config/+evil-bindings.el (no change to +emacs since there was no 'code' prefix) * FUp filechange noise
This commit is contained in:
committed by
Henrik Lissner
parent
f561abff64
commit
f5d1081cde
@ -148,3 +148,11 @@ Also logs the resolved project root, if found."
|
||||
(remove-hook 'company-mode-hook #'+lsp-init-company-h t))))
|
||||
:config
|
||||
(setq company-lsp-cache-candidates 'auto)) ;; cache candidates for better performance
|
||||
|
||||
(use-package! helm-lsp
|
||||
:when (featurep! :completion helm)
|
||||
:commands helm-lsp-workspace-symbol helm-lsp-global-workspace-symbol)
|
||||
|
||||
(use-package! lsp-ivy
|
||||
:when (featurep! :completion ivy)
|
||||
:commands lsp-ivy-workspace-symbol lsp-ivy-global-workspace-symbol)
|
||||
|
Reference in New Issue
Block a user