diff options
author | Alan Pearce | 2016-09-23 16:12:40 +0200 |
---|---|---|
committer | Alan Pearce | 2016-09-23 16:12:40 +0200 |
commit | 7a94af80a25376f7a0aafda9bdee2c6484fbcb6c (patch) | |
tree | 94ed69643b1949074f8d341ee9dbfbc88dccb042 | |
parent | 82f36d04b56cef52c5eaf652f7e787da49841931 (diff) | |
download | nixfiles-7a94af80a25376f7a0aafda9bdee2c6484fbcb6c.tar.lz nixfiles-7a94af80a25376f7a0aafda9bdee2c6484fbcb6c.tar.zst nixfiles-7a94af80a25376f7a0aafda9bdee2c6484fbcb6c.zip |
Emacs: Add mpc setup
-rw-r--r-- | tag-emacs/emacs.d/init.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 20aaa397..1f5442da 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1566,6 +1566,15 @@ write to the Android calendar, and then for DAVDroid to sync with the server. org-icalendar-alarm-time 60))) #+END_SRC +* Music +Emacs actually supports playing music via mpd. + +#+BEGIN_SRC emacs-lisp + (use-package mpc + :defer t + :config (progn + (setq mpc-browser-tags '(Genre Albumartist|Composer|Performer Album|Playlist)))) +#+END_SRC * Programming ** flycheck |