diff options
author | Case Duckworth | 2021-01-27 12:45:27 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-27 12:45:27 -0600 |
commit | 84ea017b73c571d8b11858af42a5b51d7defd485 (patch) | |
tree | 5389bc5cab100d2d3759528a3b8b14dc6a0f8085 | |
parent | Don't create lockfiles (diff) | |
download | emacs-84ea017b73c571d8b11858af42a5b51d7defd485.tar.gz emacs-84ea017b73c571d8b11858af42a5b51d7defd485.zip |
Change dired-listing-switches
Now, it lists Almost all files (not . or ..), Formats directories and others with a character at the end, hides groups and owner (-g -o), shows Humanstyle sizes, and groups directories first. I thought I couldn't use these because of Windows' elisp ls, but apparently it works here. If it causes problems, I can use an if form.
-rw-r--r-- | config.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.org b/config.org index 75ec848..9abef66 100644 --- a/config.org +++ b/config.org | |||
@@ -1619,7 +1619,7 @@ move up a directory with a keybinding, I'll change =-a= to =-A=. | |||
1619 | (setq-default dired-recursive-copies 'always | 1619 | (setq-default dired-recursive-copies 'always |
1620 | dired-recursive-deletes 'always | 1620 | dired-recursive-deletes 'always |
1621 | delete-by-moving-to-trash t | 1621 | delete-by-moving-to-trash t |
1622 | dired-listing-switches "-alh" | 1622 | dired-listing-switches "-AFgho --group-directories-first" |
1623 | dired-dwim-target t) | 1623 | dired-dwim-target t) |
1624 | #+end_src | 1624 | #+end_src |
1625 | 1625 | ||