spacemacs/layers/+music/spotify/packages.el

51 lines
1.8 KiB
EmacsLisp

;;; packages.el --- spotify Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 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-plus :toggle (configuration-layer/package-usedp 'helm))
(counsel-spotify :toggle (configuration-layer/package-usedp 'ivy))))
(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-plus ()
(use-package helm-spotify-plus
:defer t
:init (spacemacs/set-leader-keys "amsg" 'helm-spotify-plus)))
(defun spotify/init-counsel-spotify ()
(use-package counsel-spotify
:defer t
:commands (counsel-spotify-search-artist
counsel-spotify-search-album
counsel-spotify-search-track
counsel-spotify-search-tracks-by-artist
counsel-spotify-search-tracks-by-album)
:init (progn
(spacemacs/declare-prefix "amss" "search")
(spacemacs/declare-prefix "amssT" "tracks")
(spacemacs/set-leader-keys
"amssa" 'counsel-spotify-search-artist
"amssA" 'counsel-spotify-search-album
"amsst" 'counsel-spotify-search-track
"amssTa" 'counsel-spotify-search-tracks-by-artist
"amssTA" 'counsel-spotify-search-tracks-by-album))))