diff options
-rwxr-xr-x | emacs.org | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -73,7 +73,8 @@ Request the following packages: slime-company chatgpt org-download - eshell-git-prompt)) + eshell-git-prompt + eshell-vterm)) #+end_src ** Installation & activation Set ~package-archives~, and install packages @@ -138,7 +139,9 @@ Fonts and basic appearance settings (global-visual-line-mode 1) (require 'emojify) - (global-emojify-mode 1) + (if (version< emacs-version "29") + (setq global-emojify-mode 1) + (setq global-emojify-mode 0)) (setq visible-bell t) |