aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot_emacs.tmpl15
1 files changed, 14 insertions, 1 deletions
diff --git a/dot_emacs.tmpl b/dot_emacs.tmpl
index d3bd31d..0fc6d1a 100644
--- a/dot_emacs.tmpl
+++ b/dot_emacs.tmpl
@@ -488,6 +488,11 @@ Otherwise split the current paragraph into one sentence per line."
(:map LaTeX-mode-map
("M-q" . ales/fill-paragraph)))
+(use-package libmpdel
+ ;; used by mpdel to connect to mpd
+ :custom
+ (libmpdel-hostname "asteria.home.arpa"))
+
(use-package magit
:ensure t
:config
@@ -559,7 +564,6 @@ Otherwise split the current paragraph into one sentence per line."
(use-package mingus
;; mpd client
- :ensure t
:custom
(mingus-mpd-host "asteria.home.arpa"))
@@ -571,9 +575,18 @@ Otherwise split the current paragraph into one sentence per line."
(completion-cycle-threshold 5))
(use-package mpc
+ ;; mpd client
:custom
(mpc-host "asteria.home.arpa"))
+(use-package mpdel
+ ;; mpd client
+ ;; host/port customization under libmpdel package
+ :ensure t
+ :diminish
+ :config
+ (mpdel-mode))
+
(use-package ocp-indent
:ensure t)