From 4a635a9428513f7f146be68d4a3677a0128739aa Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 18 Aug 2020 00:45:55 +0100 Subject: +ace window config specifically for ease of use --- Emacs/.config/emacs/config.org | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Emacs/.config/emacs') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 1aacf37..ff99d9f 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -406,6 +406,22 @@ Setup avy with leader. "l" #'avy-goto-line "g" #'avy-goto-char-2)) #+end_src +* Ace window +Though evil provides a great many features in terms of window +management, much greater than what's easily available in Emacs, ace +window can provide some nicer chords for higher management of windows +(closing, switching, etc). + +#+begin_src emacs-lisp +(use-package ace-window + :after evil + :custom + (aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)) + :general + (general-def + :states 'normal + [remap evil-window-next] #'ace-window)) +#+end_src * Projectile Setup projectile, along with the tags command. Also bind "C-c C-p" to the projectile command map for quick access. -- cgit v1.2.3-13-gbd6f