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
;; =========
;; 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
;; ==========

View File

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

View File

@ -77,7 +77,6 @@
;; scratch should be scratch
(setq initial-scratch-message nil)
(ability flycheck ()
"Check syntax on the fly using flycheck."
(require 'flycheck)
@ -304,6 +303,13 @@
"Save your current working buffers and restore later"
(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 ---------------------------------------------
;; Put them in one nice place if possible
(if (file-directory-p "~/.backup")