From a25ce575d17b3da57652099b0775d6c76a8d3b9d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 11 Feb 2020 13:54:19 -0800 Subject: emacs: easy navigation between windows Add a few bindings to move up / down / left / right. --- emacs.d/custom/fcuny-navigation.el | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'emacs.d') diff --git a/emacs.d/custom/fcuny-navigation.el b/emacs.d/custom/fcuny-navigation.el index 218dd7d..4547e61 100644 --- a/emacs.d/custom/fcuny-navigation.el +++ b/emacs.d/custom/fcuny-navigation.el @@ -5,6 +5,12 @@ :bind (("C-c l" . avy-goto-line))) +(use-package windmove + :bind (("" . windmove-left) + ("" . windmove-up) + ("" . windmove-right) + ("" . windmove-down))) + (use-package bookmark :custom (bookmark-default-file (expand-file-name "bookmarks" fcuny/path-emacs-var)) -- cgit 1.4.1