diff options
Diffstat (limited to 'emacs.org')
-rwxr-xr-x | emacs.org | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -216,6 +216,16 @@ Fonts and basic appearance settings for each device ([remap describe-key] . helpful-key)) #+end_src * Dired +** Functions +#+begin_src emacs-lisp + (defun dired-watch-video () + (interactive) + (async-shell-command (format "mpv \"%s\"" (dired-get-filename)))) +#+end_src +** Keybindings +#+begin_src emacs-lisp + (define-key dired-mode-map "b" 'dired-up-directory) +#+end_src ** All-the-icons.el #+begin_src emacs-lisp (require 'cl-lib) |