diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-05-29 11:27:06 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-05-29 11:27:06 -0700 |
commit | 05383b18bb341acc39d4599bcb7f3e241468928d (patch) | |
tree | 9a4271ee56dd4767e3490c387735e2ae7da38df6 /emacs | |
parent | tmux: remove duplicated settings (diff) | |
download | emacs.d-05383b18bb341acc39d4599bcb7f3e241468928d.tar.gz |
emacs: remove ace-window
I still find this annoying.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-navigation.el | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/emacs.d/custom/fcuny-navigation.el b/emacs.d/custom/fcuny-navigation.el index 871b411..298c70f 100644 --- a/emacs.d/custom/fcuny-navigation.el +++ b/emacs.d/custom/fcuny-navigation.el @@ -1,40 +1,5 @@ (require 'fcuny-vars) -(use-package ace-window - :ensure t - :pretty-hydra - ((:title "Window Management" - :foreign-keys warn :quit-key "q") - ("Actions" - (("TAB" other-window "switch") - ("x" ace-delete-window "delete" :exit t) - ("m" ace-delete-other-windows "maximize" :exit t) - ("s" ace-swap-window "swap" :exit t) - ("a" ace-select-window "select" :exit t) - ("f" toggle-frame-fullscreen "fullscreen" :exit t)) - "Resize" - (("h" shrink-window-horizontally "←") - ("j" enlarge-window "↓") - ("k" shrink-window "↑") - ("l" enlarge-window-horizontally "→") - ("n" balance-windows "balance")) - "Split" - (("b" split-window-right "horizontally") - ("v" split-window-below "vertically")) - "Zoom" - (("+" text-scale-increase "in") - ("-" text-scale-decrease "out") - ("0" (text-scale-increase 0) "reset")))) - :bind (([remap other-window] . ace-window) - ("C-c w" . ace-window-hydra/body)) - :custom-face - (aw-leading-char-face ((t (:inherit font-lock-keyword-face :bold t :height 3.0)))) - (aw-mode-line-face ((t (:inherit mode-line-emphasis :bold t)))) - :hook (emacs-startup . ace-window-display-mode) - :config - ;; Bind hydra to dispatch list - (add-to-list 'aw-dispatch-alist '(?w ace-window-hydra/body) t)) - (use-package bookmark :custom (bookmark-default-file (expand-file-name "bookmarks" fcuny/path-emacs-var)) |