From 1706f3941e43ba119f4d659267be8589454d173e Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Sun, 6 Dec 2020 13:46:32 +0100 Subject: [PATCH] faster navigation with avy --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index 3145a4c..dda2f73 100644 --- a/init.el +++ b/init.el @@ -154,6 +154,11 @@ (counsel-mode 1) (diminish 'counsel-mode) +;; navigation with avy +(use-package avy + :straight t + :bind ("M-s" . avy-goto-word-1)) + ;; completion by default - welcome to 2020 (straight-use-package 'company) (straight-use-package 'company-auctex)