From a7e3537b705760e3ea3230ab51c50e10d312438e Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sun, 25 Apr 2021 18:37:48 -0400 Subject: [PATCH] DEL mingus --- etc/conf.org | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) diff --git a/etc/conf.org b/etc/conf.org index d091685..7f1356a 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -52,7 +52,6 @@ This is my personal emacs config. It is quite massive. Please use the table of c - [[#mu4e][mu4e]] - [[#shell][shell]] - [[#ediff][ediff]] - - [[#mulitmedia-controls][mulitmedia controls]] - [[#keybindings][keybindings]] - [[#setup][setup]] - [[#whichkey][whichkey]] @@ -3381,18 +3380,6 @@ Initialize by running =nd/mu-init=. #+BEGIN_SRC emacs-lisp (setq ediff-window-setup-function 'ediff-setup-windows-plain) #+END_SRC -** mulitmedia controls -:PROPERTIES: -:ID: 46d2458c-5c6d-4487-b066-ecf250911fe3 -:END: -This controls the music player daemon (MPD) which in my case is modidy with several backends (notably a subsonic client). -#+BEGIN_SRC emacs-lisp -(use-package mingus - :straight t - :config - (setq mingus-mpd-host "localhost" - mingus-mpd-port 6600)) -#+END_SRC * keybindings For the sake of my sanity, all bindings go here. Note this means I don't use =:bind= in use-package forms. ** setup @@ -3729,23 +3716,6 @@ This is somewhat strange because all I really care about is moving between lines (kbd "M-j") #'outline-move-subtree-down ; requires outline magic (kbd "M-RET") #'outline-insert-heading) #+END_SRC -*** mingus -:PROPERTIES: -:ID: d4c70a6b-db7f-4707-a694-d5b0b96fff2d -:END: -#+BEGIN_SRC emacs-lisp -(evil-define-key '(visual normal) mingus-browse-map - (kbd "RET") #'mingus-down-dir-or-play-song - "^" #'mingus-open-parent - "s" #'mingus-search - "a" #'mingus-add-things-at-p) - -(evil-define-key '(visual normal) mingus-playlist-map - (kbd "RET") #'mingus-play - "m" #'mingus-mark - "D" #'mingus-del-marked - "U" #'mingus-unmark-all) -#+END_SRC *** collection :PROPERTIES: :ID: a209edf3-33d2-4d71-958d-02f11c7b74f8 @@ -4219,22 +4189,6 @@ The function keys are nice because they are almost (not always) free in every mo (global-set-key (kbd " o") #'counsel-org-goto-all) (global-set-key (kbd " f") #'flyspell-correct-at-point) -(defhydra hydra-multimedia (global-map "" :exit t) - "convenient multimedia controls" - ("" mingus) - ("b" mingus-browse) - ("c" mingus-clear) - ("p" mingus-pause) - ("v" mingus-volume) - ("r" mingus-repeat) - ("s" mingus-stop) - ("-" mingus-vol-down :exit nil) - ("=" mingus-vol-up :exit nil) - ("]" mingus-seek :exit nil) - ("[" mingus-seek-backward :exit nil) - (">" mingus-next :exit nil) - ("<" mingus-prev :exit nil)) - (defhydra hydra-modes (global-map "" :exit t) "convenient mode toggles" ("v" visual-line-mode)