about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-windows.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/init-windows.el')
-rw-r--r--.emacs.d/lisp/init-windows.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-windows.el b/.emacs.d/lisp/init-windows.el
index b80e8bc..87e1991 100644
--- a/.emacs.d/lisp/init-windows.el
+++ b/.emacs.d/lisp/init-windows.el
@@ -3,6 +3,11 @@
 ;;; Code:
 
 (use-package emacs
+  :bind
+  ("C-x O" . (lambda ()
+               (interactive)
+               (other-window -1)))
+  ("C-x C-M-b" . ibuffer)
   :config
   (winner-mode +1)
   ;; From EmacsWiki
@@ -49,7 +54,9 @@
 
 (use-package ace-window
   :diminish
-  :bind ([remap other-window] . ace-window)
+  :bind
+  ([remap other-window] . ace-window)
+  ("C-<tab>" . ace-window)
   :custom-face
   (aw-leading-char-face
    ((t (:foreground "white" :background "red"