We changed the filter groups labels to start with a capital to keep
the style consistent with the Default group. We also added a new Man
filter group and a condition in the "Misc" group to exclude man pages.
(setq ibuffer-saved-filter-groups
'(("default"
- ("misc" (name . "^\\*.*$"))
- ("dired" (mode . dired-mode)))))
+ ("Misc" (and (name . "^\\*.*$")
+ (not (mode . Man-mode))))
+ ("Dired" (mode . dired-mode))
+ ("Man" (mode . Man-mode)))))
(add-hook 'ibuffer-mode-hook (lambda () (ibuffer-switch-to-saved-filter-groups "default")))