spacemacs/layers/+fun/xkcd/packages.el
John Practicalli Stevenson 92c010a207 [applications] refactor key bindings to layer categories
refactor key bindings for applications to provide additional room for
applications and use lower case characters.

Move calc-dispatch to `SPC a *`

Relates to #13503
2020-07-02 23:43:19 +02:00

29 lines
769 B
EmacsLisp

;;; packages.el --- xkcd Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq xkcd-packages '(xkcd))
(defun xkcd/init-xkcd ()
(use-package xkcd-mode
:defer t
:init
(progn
(setq xkcd-cache-dir (concat spacemacs-cache-directory "xkcd/"))
(when (not (file-directory-p xkcd-cache-dir))
(make-directory xkcd-cache-dir))
(spacemacs/set-leader-keys
"afx" 'xkcd)
(evilified-state-evilify xkcd-mode xkcd-mode-map
"h" 'xkcd-prev
"j" 'xkcd-next
"k" 'xkcd-prev
"l" 'xkcd-next))))