You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
351 B
EmacsLisp
11 lines
351 B
EmacsLisp
2 years ago
|
(setq ibuffer-saved-filter-groups
|
||
|
'(("default"
|
||
2 years ago
|
("Misc" (and (name . "^\\*.*$")
|
||
|
(not (mode . Man-mode))))
|
||
|
("Dired" (mode . dired-mode))
|
||
|
("Man" (mode . Man-mode)))))
|
||
2 years ago
|
|
||
|
(add-hook 'ibuffer-mode-hook (lambda () (ibuffer-switch-to-saved-filter-groups "default")))
|
||
|
|
||
2 years ago
|
(provide 'init-ibuffer-filter-groups)
|