summaryrefslogtreecommitdiff
path: root/emacs/inits/13-ibuffer.el
diff options
context:
space:
mode:
authortslil clingman <>2021-06-29 17:34:31 -0400
committertslil clingman <>2021-06-29 18:28:18 -0400
commit24f196ef4576ab1d8ab205e7378b439f2aa8e9ce (patch)
tree9c1a4329e2f055ad80b7e0d5bd5a6f7843ac789f /emacs/inits/13-ibuffer.el
parentd550a210bd05a0019ce3e1757d8ec32731d0f72c (diff)
Switch from Selectrum+CTRLF to vertico+consult+marginalia
In the process, rid myself of company and everything that depended on it (RIP elpy), because i want a uniform interface for capfs, and that's vertico+consult.
Diffstat (limited to 'emacs/inits/13-ibuffer.el')
-rw-r--r--emacs/inits/13-ibuffer.el20
1 files changed, 9 insertions, 11 deletions
diff --git a/emacs/inits/13-ibuffer.el b/emacs/inits/13-ibuffer.el
index f94e1a5..b40aa2d 100644
--- a/emacs/inits/13-ibuffer.el
+++ b/emacs/inits/13-ibuffer.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2021-03-21 22h32 EDT (hobbies)>
+;; Time-stamp: <2021-06-29 18h28 EDT (hobbies)>
(use-package ibuffer
:bind (("C-x C-b" . ibuffer))
@@ -10,27 +10,23 @@
'(("default"
("agda" (or (mode . agda2-mode)
(name . "^\\*[aA]gda")))
- ("c" (or (mode . c-mode)
- (mode . makefile-gmake-mode)))
("coq" (or (mode . coq-mode)
(mode . coq-goals-mode)
(mode . coq-response-mode)
(mode . coq-shell-mode)))
+ ("c" (or (mode . c-mode)
+ (mode . makefile-gmake-mode)))
("dired" (mode . dired-mode))
("elisp" (or (mode . emacs-lisp-mode)
(name . "^\\*Backtrace\\*")))
("emacs" (or (name . "^\\*scratch\\*$")
(name . "^\\*Messages\\*$")
(name . "^\\*init log\\*$")
- (name . "^\\*Compile-Log\\*$")))
- ("exwm" (mode . exwm-mode))
- ("help" (or (mode . helpful-mode)
- (name . "^\\*Help\\*$")))
+ (name . "^\\*Compile-Log\\*$")
+ (mode . helpful-mode)
+ (name . "^\\*Help\\*$")))
("irc" (mode . rcirc-mode))
("magit" (name . "^magit[:-]"))
- ("media" (or (mode . image-mode)
- (mode . doc-view-mode)))
- ("org" (mode . org-mode))
("REPL" (name . "^\\*.*REPL.*\\*$"))
("rust" (mode . rust-mode))
("slime" (name . "^\\*slime-[^*]*\\*$"))
@@ -40,7 +36,9 @@
(mode . html-mode)
(mode . css-mode)
(mode . mhtml-mode)))
- ("zig" (mode . zig-mode)))))
+ ("zig" (or (mode . zig-mode)
+ (name . "^\\*zig.*\\*$")
+ (name . "^\\*zls.*\\*$"))))))
(defadvice ibuffer-update-title-and-summary (after remove-column-titles)
(with-current-buffer "*Ibuffer*"