spacemacs/layers/+fun/emoji/packages.el

66 lines
2.3 KiB
EmacsLisp
Raw Normal View History

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.
;;
;; 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
2021-09-21 20:07:38 +00:00
(defconst emoji-packages
'(
emoji-cheat-sheet-plus
emojify
(company-emoji :requires company)))
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
emoji-cheat-sheet-plus-buffer
2015-05-24 23:11:34 +00:00
emoji-cheat-sheet-plus-display-mode)
:init
(progn
(spacemacs/set-leader-keys "afe" 'emoji-cheat-sheet-plus-buffer)
(spacemacs/set-leader-keys "ie" 'emoji-cheat-sheet-plus-insert)
(evilified-state-evilify emoji-cheat-sheet-plus-buffer-mode
emoji-cheat-sheet-plus-buffer-mode-map
"<RET>" 'emoji-cheat-sheet-plus-echo-and-copy))
:config
(spacemacs|hide-lighter emoji-cheat-sheet-plus-display-mode)))
(defun emoji/init-emojify ()
(use-package emojify
:defer t
:init
(setq emojify-emojis-dir (concat spacemacs-cache-directory "emojify/"))))
(defun emoji/init-company-emoji ()
(use-package company-emoji
:defer t
: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))
2021-09-21 20:07:38 +00:00
(spacemacs|add-company-backends
:backends company-emoji
:modes text-mode))
:config
(advice-add 'emoji-cheat-sheet-plus--insert-selection :after #'spacemacs/emoji-insert-and-possibly-complete)))