diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-11-01 02:32:55 +0000 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-11-01 02:32:55 +0000 |
commit | 4481cfabb8860d74059602bcc37f98ddca224132 (patch) | |
tree | a0e6ad7b6a14d5d3578c9673e06e84e721a80873 | |
parent | 10e3c7fc4a098c1c2be643b471874d7d11a092c2 (diff) | |
download | dotfiles-4481cfabb8860d74059602bcc37f98ddca224132.tar.gz dotfiles-4481cfabb8860d74059602bcc37f98ddca224132.tar.bz2 dotfiles-4481cfabb8860d74059602bcc37f98ddca224132.zip |
+map for dired to make using it reasonable
-rw-r--r-- | doom.d/config.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index 7d103b1..8835138 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -91,6 +91,15 @@ become my C one soon! Really simple, just want to set projectile-tags-command when projectile has loaded, and easily add new ignores if necessary. +*** Dired +#+BEGIN_SRC elisp +(after! dired + (map! + :map dired-mode-map + :n "RET" nil + :ng "^" nil) + ) +#+END_SRC *** Wakatime #+BEGIN_SRC elisp (setq wakatime-api-key (shell-command-to-string "pass Keys/Wakatime")) |