6b33031dc5
- Rename contrib directory to layers - Add new variable dotspacemacs-distribution - Move spacemacs layer to layers/!distribution - New layer spacemacs-core in layers/!distribution - User can now set dotspacemacs-distribution to spacemacs or spacemacs-core (default spacemacs) spacemacs-core is very lightweight layer sufficient to build upon spacemacs.
31 lines
923 B
EmacsLisp
31 lines
923 B
EmacsLisp
;;; packages.el --- Prodigy Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2014-2015 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 prodigy-packages '(prodigy))
|
|
|
|
(defun prodigy/init-prodigy ()
|
|
(use-package prodigy
|
|
:init
|
|
(evil-leader/set-key "aS" 'prodigy)
|
|
:config
|
|
(evilify prodigy-mode prodigy-mode-map
|
|
"h" 'prodigy-first
|
|
"j" 'prodigy-next
|
|
"k" 'prodigy-prev
|
|
"l" 'prodigy-last
|
|
"H" 'prodigy-display-process
|
|
"J" 'prodigy-next-with-status
|
|
"K" 'prodigy-prev-with-status
|
|
"L" 'prodigy-start
|
|
"d" 'prodigy-jump-dired
|
|
"g" 'prodigy-jump-magit
|
|
"Y" 'prodigy-copy-cmd)))
|