emoji support has been added

This commit is contained in:
Sameer Rahmani 2018-03-14 17:26:27 +00:00
parent 38ee7a1768
commit aa42be64ff
3 changed files with 12 additions and 2 deletions

View File

@ -13,7 +13,8 @@
;; ABILITIES ;; ABILITIES
;; ========= ;; =========
;; Disable abilities which you don't want. ;; Disable abilities which you don't want.
(disable 'rbenv 'helm 'spell 'linum 'smart-mode-line 'desktop-mode 'dired+ 'guru) (disable 'rbenv 'helm 'spell 'linum 'smart-mode-line 'desktop-mode 'dired+ 'guru 'emoji)
;; EXTENSIONS ;; EXTENSIONS
;; ========== ;; ==========

View File

@ -67,6 +67,9 @@
(with-ability flycheck (with-ability flycheck
(depends-on 'flycheck)) (depends-on 'flycheck))
(with-ability emoji
(depends-on 'emojify))
;; Extension ------------------------------------- ;; Extension -------------------------------------
(extension editor (extension editor

View File

@ -77,7 +77,6 @@
;; scratch should be scratch ;; scratch should be scratch
(setq initial-scratch-message nil) (setq initial-scratch-message nil)
(ability flycheck () (ability flycheck ()
"Check syntax on the fly using flycheck." "Check syntax on the fly using flycheck."
(require 'flycheck) (require 'flycheck)
@ -304,6 +303,13 @@
"Save your current working buffers and restore later" "Save your current working buffers and restore later"
(desktop-save-mode 1)) (desktop-save-mode 1))
(ability emoji ()
"Adds support for emoji support in FG42. (github style)"
(require 'emojify)
(add-hook 'after-init-hook #'global-emojify-mode)
(message "mmmmmmmmmmmmmmmmmmmmmmm"))
;; Backup files --------------------------------------------- ;; Backup files ---------------------------------------------
;; Put them in one nice place if possible ;; Put them in one nice place if possible
(if (file-directory-p "~/.backup") (if (file-directory-p "~/.backup")