diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 16:19:30 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-13 16:19:30 -0800 |
commit | b1f7c367e4e30a847a35d5bba8b20ba94f76bb82 (patch) | |
tree | e3db886461cbae6f3c9a299f11e4080e5c06bb9f /emacs.d/core | |
parent | [emacs] change binding for projectile. (diff) | |
download | emacs.d-b1f7c367e4e30a847a35d5bba8b20ba94f76bb82.tar.gz |
[emacs] set options for 'dired'.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/core/core-editor.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs.d/core/core-editor.el b/emacs.d/core/core-editor.el index 1072fdd..ebf47c3 100644 --- a/emacs.d/core/core-editor.el +++ b/emacs.d/core/core-editor.el @@ -18,6 +18,12 @@ (exec-path-from-shell-initialize) (exec-path-from-shell-copy-envs '("TMPDIR")))) +(use-package dired + :commands dired + :init + (setq dired-listing-switches + "-laGhv")) + (use-package ag :ensure t :defer t) |