diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-23 17:33:21 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-23 17:33:21 -0500 |
commit | 0884b63b028514ff55208af9020e0dce5700e802 (patch) | |
tree | d80845b940b4725b8802f8da860aeba48709ae94 | |
parent | cb0c13d0b54257e02bdb611fec6c5c3b5c77f1c3 (diff) | |
download | configs-0884b63b028514ff55208af9020e0dce5700e802.tar.gz configs-0884b63b028514ff55208af9020e0dce5700e802.tar.xz configs-0884b63b028514ff55208af9020e0dce5700e802.zip |
[emacs] dired hide details by default, ignore /var/eshell/lastdir
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | init.org | 14 |
2 files changed, 10 insertions, 5 deletions
@@ -12,3 +12,4 @@ !/var/abbrev.el !/lisp/bbdb/bbdb-autoloads.el +/var/eshell/lastdir @@ -1098,11 +1098,13 @@ TODO: break this giant source block down into individual org sections. (set-window-configuration wnd)))) (error "no more than 2 files should be marked")))) :bind (:map dired-mode-map - ("e" . dired-ediff-files) - ("E" . dired-toggle-read-only) - ("z" . (lambda () - (interactive) - (a/dired-start-process "zathura"))))) + ("e" . dired-ediff-files) + ("E" . dired-toggle-read-only) + ("\\" . dired-hide-details-mode) + ("z" . (lambda () + (interactive) + (a/dired-start-process "zathura")))) + :hook (dired-mode . dired-hide-details-mode)) (use-package eldoc :when (version< "25" emacs-version) @@ -1891,6 +1893,8 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. :bind ("C-=" . er/expand-region)) #+end_src +** TODO multiple-cursors + * Email :PROPERTIES: :CUSTOM_ID: email |