diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-27 16:57:10 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-07-27 16:58:33 +0100 |
commit | a1b6ba53b612775b70badef722e0c9703dac178c (patch) | |
tree | e9bd24e1f9c5c7ecc03a6e65533d08e59ded9a26 | |
parent | 35a527c6562fb73da313c7e64f3eff1bb8c3001e (diff) | |
download | dotfiles-a1b6ba53b612775b70badef722e0c9703dac178c.tar.gz dotfiles-a1b6ba53b612775b70badef722e0c9703dac178c.tar.bz2 dotfiles-a1b6ba53b612775b70badef722e0c9703dac178c.zip |
(Emacs/config)+mpv module configuration in config
Mostly for a binding for mpv-open-video and to load it earlier for
org-bookmark
-rw-r--r-- | Emacs/.config/emacs/config.org | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 8c6b100..6fed7a1 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -2151,6 +2151,18 @@ and integrates slickly into image-dired. Of course, erc-nick "oreodave" erc-buffer-display "current")) #+end_src +** mpv +My [[file:elisp/mpv.el][custom mpv module]] for opening videos in +Emacs. + +#+begin_src emacs-lisp +(use-package mpv + :defer t + :load-path "elisp/" + :general + (app-leader + "v" #'mpv-open-video)) +#+end_src * Text modes Standard packages and configurations for text-mode and its derived modes. |