From f27605ec6b2a88189f433ec59f4c2b3737e974f5 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Tue, 16 Mar 2021 19:54:15 +0100 Subject: [PATCH] add ace-window --- emacs.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/emacs.el b/emacs.el index 2ec7a47..c752c38 100644 --- a/emacs.el +++ b/emacs.el @@ -68,8 +68,8 @@ (straight-use-package 'speed-type) (straight-use-package 'magit) (straight-use-package 'restart-emacs) -(straight-use-package 'elpher) (straight-use-package 'mingus) +(straight-use-package 'ace-window) ;; Emacs Configuration (setq inhibit-splash-screen t) @@ -159,3 +159,8 @@ (use-package magit :bind (("C-M-g" . magit))) + +(use-package ace-window + :config + (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)) + :bind (("C-x o" . ace-window)))