Alexander-Miller/treemacs@b18a05b1f6 -> Alexander-Miller/treemacs@e4bb236bd5 emacs-lsp/lsp-treemacs@355e468b7f -> emacs-lsp/lsp-treemacs@f7ae97560c A new major version of treemacs was released some days ago. The currently pinned version is from February 2022, and it stops LSP servers from starting with message "cannot load treemacs-lib" via lsp-treemacs. Fix: #6814 Close: #6812 Co-authored-by: logc <logc@users.noreply.github.com>
14 lines
510 B
EmacsLisp
14 lines
510 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; ui/treemacs/packages.el
|
|
|
|
(package! treemacs :pin "e4bb236bd5cd7c077c2207b33d2699485c405536")
|
|
;; These packages have no :pin because they're in the same repo
|
|
(when (modulep! :editor evil +everywhere)
|
|
(package! treemacs-evil))
|
|
(package! treemacs-projectile)
|
|
(when (modulep! :tools magit)
|
|
(package! treemacs-magit))
|
|
(when (modulep! :ui workspaces)
|
|
(package! treemacs-persp))
|
|
(when (modulep! +lsp)
|
|
(package! lsp-treemacs :pin "f7ae97560cfbc88e781a2d5b9253dace7175b918"))
|