diff options
author | Thanos Apollo <[email protected]> | 2023-05-02 21:25:42 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-05-02 21:25:42 +0300 |
commit | 21f3148a0a635de04c7bfd6250b057cd170916c1 (patch) | |
tree | 2360f7e304c671c67a59536ba359502a2ee2432d | |
parent | d7ecf788a152e94b97d726f1556d92e010e9e862 (diff) |
emacs: if version>28 disable emojis
-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) |