Set default ibuffer format

This commit is contained in:
contrapunctus 2022-05-01 10:00:46 +05:30
parent 36e750c5ba
commit d9d2a773b3
1 changed files with 3 additions and 1 deletions

View File

@ -3925,7 +3925,9 @@ jumping to match from =M-x grep= , too)
("r" . ibuffer-do-replace-regexp)
("U" . ibuffer-unmark-all)
("X" . 'ibuffer-do-kill-on-deletion-marks)) ;; Boon hijacks the x key.ibuffer-set-filter-groups-by-mode
:config (setq ibuffer-show-empty-filter-groups nil))
:config
(setq ibuffer-show-empty-filter-groups nil)
(setq-default ibuffer-current-format 2))
#+END_SRC
#+BEGIN_SRC emacs-lisp