Alexander-Miller/treemacs@63e2bc207a -> Alexander-Miller/treemacs@1820db42c6 ema2159/centaur-tabs@8b4249c405 -> ema2159/centaur-tabs@5860a5c40c emacs-lsp/lsp-treemacs@d82df44d63 -> emacs-lsp/lsp-treemacs@c40a381730 emacsorphanage/git-gutter-fringe@4f19866494 -> emacsorphanage/git-gutter-fringe@648cb5b57f hlissner/emacs-doom-themes@e716ddbb88 -> hlissner/emacs-doom-themes@7d1a56623c joostkremers/writeroom-mode@7f4ec92404 -> joostkremers/writeroom-mode@eac1da790f rolandwalker/unicode-fonts@e3942fe40b -> rolandwalker/unicode-fonts@47f2397ade seagle0128/doom-modeline@ffedb34800 -> seagle0128/doom-modeline@69ede7d719 - Emacs 29 introduces the mode-line-active face, which inherits from variable-pitch, therefore the modeline uses your variable-pitch font, instead of your default. As of hlissner/emacs-doom-themes@7d1a56623c, this is no longer the case (fixing #5891). Fix: #5891
14 lines
514 B
EmacsLisp
14 lines
514 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; ui/treemacs/packages.el
|
|
|
|
(package! treemacs :pin "1820db42c6478455340a2bd962120b1e2b0bf3f6")
|
|
;; These packages have no :pin because they're in the same repo
|
|
(when (featurep! :editor evil +everywhere)
|
|
(package! treemacs-evil))
|
|
(package! treemacs-projectile)
|
|
(when (featurep! :tools magit)
|
|
(package! treemacs-magit))
|
|
(when (featurep! :ui workspaces)
|
|
(package! treemacs-persp))
|
|
(when (featurep! +lsp)
|
|
(package! lsp-treemacs :pin "c40a381730251039d33400cc14539c1e0729385f"))
|