diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-22 10:42:12 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-22 10:42:12 -0500 |
commit | 4e0afb99adeb6c013635ad7cf01d42416fb101b1 (patch) | |
tree | 3ffd3e1c72cccff96854adbe6a5d9ac5faf2e5fe | |
parent | fda74f52b706447243a113efa4c768c80ead09de (diff) | |
download | configs-4e0afb99adeb6c013635ad7cf01d42416fb101b1.tar.gz configs-4e0afb99adeb6c013635ad7cf01d42416fb101b1.tar.xz configs-4e0afb99adeb6c013635ad7cf01d42416fb101b1.zip |
[emacs/ibuffer] add new rules to my default filter group
-rw-r--r-- | init.org | 22 |
1 files changed, 15 insertions, 7 deletions
@@ -980,6 +980,13 @@ There's no way I could top that, so I won't attempt to. '(("default" ("dired" (mode . dired-mode)) ("org" (mode . org-mode)) + ("gnus" + (or + (mode . gnus-group-mode) + (mode . gnus-summary-mode) + (mode . gnus-article-mode) + ;; not really, but... + (mode . message-mode))) ("web" (or (mode . web-mode) @@ -989,20 +996,21 @@ There's no way I could top that, so I won't attempt to. ("shell" (or (mode . eshell-mode) - (mode . shell-mode))) - ("notmuch" (name . "\*notmuch\*")) + (mode . shell-mode) + (mode . term-mode))) ("programming" (or (mode . python-mode) + (mode . c-mode) (mode . c++-mode) - (mode . emacs-lisp-mode))) + (mode . emacs-lisp-mode) + (mode . scheme-mode) + (mode . haskell-mode) + (mode . lean-mode))) ("emacs" (or (name . "^\\*scratch\\*$") - (name . "^\\*Messages\\*$"))) - ("slack" - (or - (name . "^\\*Slack*")))))) + (name . "^\\*Messages\\*$")))))) (ibuffer-formats '((mark modified read-only locked " " (name 18 18 :left :elide) |