diff options
| author | Henry Webster <hwebs@hwebs.info> | 2026-07-25 08:36:28 -0500 |
|---|---|---|
| committer | Henry Webster <hwebs@hwebs.info> | 2026-07-25 08:36:28 -0500 |
| commit | a9ad4557129f99072286be440ff9a79cc69d7ce2 (patch) | |
| tree | 99fa24b5b63531e42050ad03f1e535b915440649 /emacs | |
| parent | aa557b10b578d5d63768f26451deae012ab3399b (diff) | |
(emacs) use ibuffer
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/init.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 82793e5..ac40be5 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -19,6 +19,13 @@ (setq custom-file (concat user-emacs-directory "custom.el")) (setq backup-directory-alist `(("." . ,(concat user-emacs-directory "backups")))) + +(use-package ibuffer + :custom + (ibuffer-expert t) + (ibuffer-show-empty-filter-groups nil) + :hook (ibuffer-mode . ibuffer-auto-mode)) + (use-package magit :defer t) @@ -29,7 +36,8 @@ :config (evil-set-leader '(normal visual) (kbd "SPC")) (evil-define-key '(normal visual) 'global - (kbd "<leader>gs") #'magit-status) + (kbd "<leader>gs") #'magit-status + (kbd "<leader>bi") #'ibuffer) (evil-mode 1)) (use-package evil-collection |
