about summary refs log tree commit diff
path: root/modules/workstation
diff options
context:
space:
mode:
Diffstat (limited to 'modules/workstation')
-rw-r--r--modules/workstation/emacs/init.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/workstation/emacs/init.el b/modules/workstation/emacs/init.el
index 877facf7ef4b..7d65b30dc7ba 100644
--- a/modules/workstation/emacs/init.el
+++ b/modules/workstation/emacs/init.el
@@ -13,6 +13,15 @@
 (add-to-list 'auto-mode-alist '("\\.adoc\\'" . adoc-mode))
 (add-to-list 'auto-mode-alist '("\\.quirks\\'" . conf-unix-mode))
 
+;;; Ibuffer ;;;
+;; Open ibuffer in other window, to match behaviour of the default
+;; list-buffers.
+(global-set-key
+ (kbd "C-x C-b")
+ (lambda ()
+   (interactive)
+   (ibuffer t)))
+
 ;;; ispell ;;;
 ;; System locale is Esperanto, but I write in English much more, and
 ;; spelling in Esperanto is easy anyway. ;)