From 7c2cbb9ce1a6418a006d5a3d3f0909e7dfa05371 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 17 Oct 2016 09:58:02 +0200 Subject: [PATCH] Update ace-window configuration The leading chars are now slightly larger. --- init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 6ce06db..f736dc6 100644 --- a/init.el +++ b/init.el @@ -135,7 +135,8 @@ ;; If there is more than one, they won't work right. '(hl-line ((t (:inherit nil :background "gray25")))) '(trailing-whitespace ((t (:inherit nil :background "red1")))) - '(whitespace-line ((t (:inherit nil :background "orange"))))) + '(whitespace-line ((t (:inherit nil :background "orange")))) + '(aw-leading-char-face ((t (:inherit ace-jump-face-foreground :height 3.0))))) (set-face-attribute 'default t :font "Hack-10") (set-frame-font "Hack-10" nil t) @@ -379,6 +380,9 @@ (global-wakatime-mode t)) (use-package ace-window + :init + (setq aw-keys '(?a ?o ?e ?u ?i ?d ?h ?t ?n) + aw-background nil) :bind (("M-P" . ace-window)))