aboutsummaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2018-05-24 10:38:24 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2018-05-24 10:38:24 +0200
commite1ee1f6494ced9669207d5735989607ebe61142a (patch)
tree7106aadae805c21283346822eeed39535527b7a7 /emacs
parentddaa8db71710a6b91335a5064a17283ce69cfefd (diff)
downloaddotfiles-e1ee1f6494ced9669207d5735989607ebe61142a.tar.gz
dotfiles-e1ee1f6494ced9669207d5735989607ebe61142a.zip
emacs: display emojis
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.org14
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs/init.org b/emacs/init.org
index a9e84af..d354143 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -2141,6 +2141,20 @@ too many things into my leader and these shortcuts look sensible to me).
(global-set-key (kbd "C-c o") 'crux-open-with))
#+END_SRC
+** Emojis
+
+Display emojis in buffer!
+
+#+BEGIN_SRC elisp
+(use-package emojify
+ :ensure t
+ :config
+
+ (add-hook 'after-init-hook #'global-emojify-mode)
+ (setq emojify-composed-text-p nil)
+ (setq emojify-emoji-styles '(unicode github)))
+#+END_SRC
+
* Credits
I've built this file by simply scavenging from other people's emacs.d/dotfiles