spacemacs/layers/+web-services/spotify/packages.el
syl20bnr fb27ede558 Bump year in copyright headers
Happy New Year 2017!
2017-01-05 23:08:17 -05:00

35 lines
900 B
EmacsLisp

;;; packages.el --- spotify Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Brian Hicks <brian@brianthicks.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq spotify-packages
'(
spotify
(helm-spotify :toggle (configuration-layer/package-usedp 'helm))
))
(defun spotify/init-spotify ()
(use-package spotify
:defer t
:init
(progn
(spacemacs/declare-prefix "am" "music")
(spacemacs/declare-prefix "ams" "Spotify")
(spacemacs/set-leader-keys
"amsp" 'spotify-playpause
"amsn" 'spotify-next
"amsN" 'spotify-previous
"amsQ" 'spotify-quit))))
(defun spotify/init-helm-spotify ()
(use-package helm-spotify
:defer t
:init (spacemacs/set-leader-keys "amsg" 'helm-spotify)))