emacs.d

My Emacs configuration files.
git clone git://soucy.cc/emacs.d.git
Log | Files | Refs | README

commit 167510a7506fb41cc269920776004c2047e5fb6d
parent f736fce4a0a5473b248b5047da1aaef281c5fd25
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Thu, 23 Mar 2023 20:29:57 -0400

Add the emojify package

Diffstat:
Mpartials/ui-ux.el | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/partials/ui-ux.el b/partials/ui-ux.el @@ -2,7 +2,7 @@ ;; USER INTERFACE CONFIGS ;; -;; (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/cyberpunk-2019") +(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/solarpunk") ;; (load-theme `cyberpunk-2019 t) (use-package cyberpunk-2019-theme @@ -26,7 +26,13 @@ (use-package ace-window ;; Quickly switch windows. :pin gnu - :ensure t) + :ensure t) + +(use-package emojify + ;; Display emojis. + :pin melpa + :hook (after-init . global-emojify-mode) + :ensure t) ;; Disable the ToolBar (tool-bar-mode -1)