diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2022-08-21 03:01:03 +0200 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2022-08-21 03:01:03 +0200 |
commit | 2b1d218c6db8a1dea28f076510ed0f58ca54f432 (patch) | |
tree | 202bc23dac9dc502860e90e94f47d43feef91285 | |
parent | bd1ff3ed8b87b4634b69a42a31d2856cb71ce5d5 (diff) | |
download | dotfiles-2b1d218c6db8a1dea28f076510ed0f58ca54f432.tar.gz dotfiles-2b1d218c6db8a1dea28f076510ed0f58ca54f432.zip |
Emacs: Add Emms
-rw-r--r-- | Emacs.org | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -691,3 +691,18 @@ | |||
691 | "l" 'dired-single-buffer)) | 691 | "l" 'dired-single-buffer)) |
692 | 692 | ||
693 | #+end_src | 693 | #+end_src |
694 | |||
695 | ** EMMS | ||
696 | |||
697 | #+begin_src emacs-lisp | ||
698 | |||
699 | (use-package emms | ||
700 | :config | ||
701 | (require 'emms-setup) | ||
702 | (emms-all) | ||
703 | (emms-standard) | ||
704 | (emms-default-players) | ||
705 | (emms-mode-line-disable) | ||
706 | (emms-add-directory-tree "~/Documents/music/")) | ||
707 | |||
708 | #+end_src | ||