2015-06-17 04:13:53 +00:00
|
|
|
;;; packages.el --- emoji Layer Packages File for Spacemacs
|
2015-05-24 23:11:34 +00:00
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2015-05-24 23:11:34 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-05-24 23:11:34 +00:00
|
|
|
|
2015-08-18 22:27:49 +00:00
|
|
|
(setq emoji-packages
|
2016-05-30 02:39:21 +00:00
|
|
|
'(
|
|
|
|
emoji-cheat-sheet-plus
|
2017-05-08 01:37:01 +00:00
|
|
|
emojify
|
2017-07-03 07:52:54 +00:00
|
|
|
(company-emoji :requires company)
|
2016-05-30 02:39:21 +00:00
|
|
|
))
|
2015-05-24 23:11:34 +00:00
|
|
|
|
2015-06-17 04:13:53 +00:00
|
|
|
(defun emoji/init-emoji-cheat-sheet-plus ()
|
2015-05-24 23:11:34 +00:00
|
|
|
(use-package emoji-cheat-sheet-plus
|
2015-05-25 04:44:18 +00:00
|
|
|
:commands (emoji-cheat-sheet-plus-insert
|
2015-05-25 04:54:34 +00:00
|
|
|
emoji-cheat-sheet-plus-buffer
|
2015-05-24 23:11:34 +00:00
|
|
|
emoji-cheat-sheet-plus-display-mode)
|
|
|
|
:init
|
|
|
|
(progn
|
2020-06-28 21:25:04 +00:00
|
|
|
(spacemacs/set-leader-keys "afe" 'emoji-cheat-sheet-plus-buffer)
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys "ie" 'emoji-cheat-sheet-plus-insert)
|
2015-11-21 10:07:14 +00:00
|
|
|
(evilified-state-evilify emoji-cheat-sheet-plus-buffer-mode
|
|
|
|
emoji-cheat-sheet-plus-buffer-mode-map
|
2020-02-02 14:23:35 +00:00
|
|
|
"<RET>" 'emoji-cheat-sheet-plus-echo-and-copy))
|
2019-04-21 11:22:11 +00:00
|
|
|
:config
|
|
|
|
(spacemacs|hide-lighter emoji-cheat-sheet-plus-display-mode)))
|
2015-08-18 22:27:49 +00:00
|
|
|
|
2017-05-08 01:37:01 +00:00
|
|
|
(defun emoji/init-emojify ()
|
|
|
|
(use-package emojify
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2017-05-08 01:37:01 +00:00
|
|
|
:init
|
|
|
|
(setq emojify-emojis-dir (concat spacemacs-cache-directory "emojify/"))))
|
|
|
|
|
2016-05-30 02:39:21 +00:00
|
|
|
(defun emoji/init-company-emoji ()
|
|
|
|
(use-package company-emoji
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2015-11-18 06:08:54 +00:00
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
;; For when Emacs is started in GUI mode:
|
|
|
|
(spacemacs//set-emoji-font nil)
|
|
|
|
;; Hook for when a frame is created with emacsclient
|
|
|
|
(spacemacs|do-after-display-system-init
|
|
|
|
(spacemacs//set-emoji-font-for-current-frame)))))
|