about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-navigation.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-03-11 13:24:49 +0000
committerDavid Morgan <djm_uk@protonmail.com>2023-03-11 13:24:49 +0000
commit1db348a9be8717c96a4f8e0baae8b22a8ba149ac (patch)
tree6a19c5843d591de933c3a5e2d07a137ab61f3747 /.emacs.d/lisp/init-navigation.el
parentbd273eabd72f1cf747021ac083e644a99d8d9244 (diff)
downloaddotfiles-1db348a9be8717c96a4f8e0baae8b22a8ba149ac.tar.gz
Add link-hint
Diffstat (limited to '.emacs.d/lisp/init-navigation.el')
-rw-r--r--.emacs.d/lisp/init-navigation.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el
index 3dd91b6..0a82115 100644
--- a/.emacs.d/lisp/init-navigation.el
+++ b/.emacs.d/lisp/init-navigation.el
@@ -124,5 +124,10 @@ Or remove all highlighted symbols in the current buffer (with`ARG')."
   (put 'goto-last-point 'repeat-map 'goto-last-point-repeat-map)
   :bind ("C-c <" . goto-last-point))
 
+(use-package link-hint
+  :bind
+  ("C-c C-l" . link-hint-open-link)
+  ("C-c C-S-l" . link-hint-copy-link))
+
 (provide 'init-navigation)
 ;;; init-navigation.el ends here