diff options
author | Case Duckworth | 2021-01-05 09:28:24 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-05 09:28:24 -0600 |
commit | a8ea807e7655b887e1b1cb3db466eec9819117db (patch) | |
tree | e48f233176fd460ff34aacb400cae85c01bda699 | |
parent | Add form-feed (diff) | |
download | emacs-a8ea807e7655b887e1b1cb3db466eec9819117db.tar.gz emacs-a8ea807e7655b887e1b1cb3db466eec9819117db.zip |
Highlight the current line in dired-mode
-rw-r--r-- | config.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config.org b/config.org index 070b29b..42c6845 100644 --- a/config.org +++ b/config.org | |||
@@ -1303,6 +1303,13 @@ This has to be done /before/ loading the package. It's included in =visual-fill | |||
1303 | 1303 | ||
1304 | ** Dired | 1304 | ** Dired |
1305 | 1305 | ||
1306 | *** Basic customization | ||
1307 | |||
1308 | #+BEGIN_SRC emacs-lisp | ||
1309 | ;; highlight the current line in dired. | ||
1310 | (add-hook 'dired-mode-hook #'hl-line-mode) | ||
1311 | #+end_src | ||
1312 | |||
1306 | *** Expand subtrees | 1313 | *** Expand subtrees |
1307 | 1314 | ||
1308 | 1315 | ||