summaryrefslogtreecommitdiff
path: root/emacs.org
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-05-02 21:25:42 +0300
committerThanos Apollo <[email protected]>2023-05-02 21:25:42 +0300
commit21f3148a0a635de04c7bfd6250b057cd170916c1 (patch)
tree2360f7e304c671c67a59536ba359502a2ee2432d /emacs.org
parentd7ecf788a152e94b97d726f1556d92e010e9e862 (diff)
emacs: if version>28 disable emojis
Diffstat (limited to 'emacs.org')
-rwxr-xr-xemacs.org7
1 files changed, 5 insertions, 2 deletions
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)