diff options
author | Thanos Apollo <[email protected]> | 2023-08-24 16:36:55 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-24 16:36:55 +0300 |
commit | 3fae25febe9e7f2db4249eb8933ad0c655007ece (patch) | |
tree | 5ecc12b630e807abba81d44d9c10c48510c511c6 | |
parent | 826a36344234330663bcf968dd5c24f619de2d87 (diff) |
emacs: fix emojify and eshell-git-prompt
-rwxr-xr-x | emacs.org | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -115,9 +115,7 @@ Fonts and basic appearance settings for each device ;; Set emojis for emacs 29 (require 'emojify) - (if (version< emacs-version "29") - (setq global-emojify-mode 1) - (setq global-emojify-mode 0)) + (setq global-emojify-mode 1) (setq visible-bell t) @@ -1054,6 +1052,7 @@ Create function to watch videos using ~mpv~ #+end_src ** Prompt #+begin_src emacs-lisp + (require 'eshell-git-prompt) ;; customize multiline theme (defun eshell-git-prompt-multiline () "Eshell Git prompt inspired by spaceship-prompt." |