about summary refs log tree commit diff
path: root/users/wpcarro/emacs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-12-25T02·01-0500
committerwpcarro <wpcarro@gmail.com>2021-12-25T16·07+0000
commit858dd2208f47bcc42e51756c9d278fadd597f922 (patch)
tree9db1fdb7354e9a0975207a2233a475e7fbbecd7e /users/wpcarro/emacs
parent8d64d1eeb01cc40b52f02f488f8a8b34b047c735 (diff)
fix(wpcarro/emacs): Only render unicode emojis r/3392
Disable ASCII and Github styles.

Change-Id: Ie68fa2f0129573ea8b893db22214136d69429702
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4598
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs')
-rw-r--r--users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el b/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el
index 9af5d88d38..a5fb10dd72 100644
--- a/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el
+++ b/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el
@@ -315,6 +315,10 @@
 (use-package emojify
   :config
   (add-hook 'after-init-hook #'global-emojify-mode)
+  ;; Disable the default styles of:
+  ;; - ascii  :P (When this is enabled, the vim command, :x, renders as 😶)
+  ;; - github :smile:
+  (setq emojify-emoji-styles '(unicode))
   (defun wpc-misc-copy-emoji ()
     "Select an emoji from the completing-read menu."
     (interactive)