diff options
| author | Ryan Kavanagh <rak@rak.ac> | 2023-02-16 10:00:58 -0500 | 
|---|---|---|
| committer | Ryan Kavanagh <rak@rak.ac> | 2023-02-16 10:00:58 -0500 | 
| commit | 0767eb7e583aae966453cc6808dce52fc1e2701e (patch) | |
| tree | c830f3dd0d05c44068869fd70377d2c841075b89 /dot_emacs | |
| parent | C-; -> avy-goto-char (diff) | |
mpdel
Diffstat (limited to '')
| -rw-r--r-- | dot_emacs.tmpl | 15 | 
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)  | 
