From 03aa5c14235d40e877b7dc4f92dab0e8ebce49f1 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Wed, 13 Dec 2023 19:24:16 -0900 Subject: [PATCH] Add holo-layer - super awesome!!!!!!!!!!!! --- lisp/mitch-packages.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lisp/mitch-packages.el b/lisp/mitch-packages.el index ccb35e9..d13d086 100644 --- a/lisp/mitch-packages.el +++ b/lisp/mitch-packages.el @@ -1187,6 +1187,15 @@ This is redefined for use with `hypop' library because multiple Emacs frames may :elpaca (:url "https://gitlab.com/niklaseklund/dtache") :hook (after-init . dtache-setup)) +(if (display-graphic-p) + (progn + (add-to-list 'load-path "~/.local/src/holo-layer") + (require 'holo-layer) + (setq holo-layer-enable-cursor-animation t) + (setq holo-layer-cursor-color (face-attribute 'cursor :background)) + (setq holo-layer-cursor-animation-duration 100) + (holo-layer-enable))) + (use-package oauth :elpaca (:fetcher codeberg :repo "https://codeberg.org/martianh/emacs-oauth"