From 21f3148a0a635de04c7bfd6250b057cd170916c1 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Tue, 2 May 2023 21:25:42 +0300 Subject: emacs: if version>28 disable emojis --- emacs.org | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'emacs.org') diff --git a/emacs.org b/emacs.org index 458d42d..e4075d3 100755 --- a/emacs.org +++ b/emacs.org @@ -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) -- cgit v1.2.3