diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-01-13 11:20:18 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-01-13 11:20:18 -0800 |
commit | 5f28a2923930b6547ee0808a12c25de7690f228f (patch) | |
tree | c307cc3d2acf52a1681741eb8886255607ed07b1 | |
parent | [Emacs] Add a few more functions to work with 'nest' hosts. (diff) | |
download | emacs.d-5f28a2923930b6547ee0808a12c25de7690f228f.tar.gz |
[Emacs] Update configuration for ibuffer.
-rw-r--r-- | emacs.d/init.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 9007763..e66d8e3 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -245,7 +245,18 @@ :defer t :bind ("C-x C-b" . ibuffer) :init + (setq-default ibuffer-eliding-string "…") (setq ibuffer-show-empty-filter-groups nil + ibuffer-formats '((mark modified read-only " " + (name 30 30 :left :elide) + " " + (size 9 -1 :right) + " " + (mode 16 16 :left :elide) + " " filename-and-process) + (mark " " + (name 16 -1) + " " filename)) ibuffer-saved-filter-groups (quote (("default" ("dired" (mode . dired-mode)) |