summaryrefslogtreecommitdiffstats
path: root/lisp/init-avy.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-avy.el')
-rw-r--r--lisp/init-avy.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/init-avy.el b/lisp/init-avy.el
deleted file mode 100644
index 53dd313..0000000
--- a/lisp/init-avy.el
+++ /dev/null
@@ -1,15 +0,0 @@
-;;; init-avy.el --- configure avy -*- lexical-binding:t -*-
-;;; Commentary:
-;;; Code:
-
-(use-package avy
- :ensure t
- :bind
- ;; C-c j jumps to char using 2 initial chars
- (("C-c j". avy-goto-char-2)
- ;; M-g M-g uses avy-goto-line instead regular goto-line
- ("M-g M-g" . avy-goto-line)))
-
-(provide 'init-avy)
-
-;;; init-avy.el ends here