mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
* 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
12 lines
274 B
EmacsLisp
12 lines
274 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(package! lsp-mode)
|
|
(package! lsp-ui)
|
|
(when (featurep! :completion company)
|
|
(package! company-lsp))
|
|
(when (featurep! :completion ivy)
|
|
(package! lsp-ivy))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-lsp))
|