spacemacs/layers/spotify/packages.el

27 lines
784 B
EmacsLisp
Raw Normal View History

2015-05-08 05:04:41 +00:00
;;; packages.el --- spotify Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
2015-05-08 05:04:41 +00:00
;;
;; Author: Brian Hicks <brian@brianthicks.com>
2015-05-08 05:04:41 +00:00
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq spotify-packages '(spotify helm-spotify))
2015-05-08 05:04:41 +00:00
(defun spotify/init-spotify ()
(use-package spotify
:config (spacemacs/set-leader-keys
2015-05-08 05:04:41 +00:00
"amsp" 'spotify-playpause
"amsn" 'spotify-next
"amsN" 'spotify-previous
"amsQ" 'spotify-quit)))
(when (configuration-layer/layer-usedp 'spacemacs-helm)
(defun spotify/init-helm-spotify ()
(use-package helm-spotify
:config (spacemacs/set-leader-keys
"amsg" 'helm-spotify))))