Add config for avy and link-hint
This commit is contained in:
parent
1cd76b4b64
commit
0f5d6d7eed
11
init.el
11
init.el
|
@ -952,6 +952,17 @@
|
||||||
:map comint-mode-map
|
:map comint-mode-map
|
||||||
("<remap> <comint-history-isearch-backward-regexp>" . consult-history)))
|
("<remap> <comint-history-isearch-backward-regexp>" . consult-history)))
|
||||||
|
|
||||||
|
(use-package avy
|
||||||
|
:if (package-installed-p 'avy)
|
||||||
|
:bind (("<remap> <goto-char>" . avy-goto-char)
|
||||||
|
("<remap> <goto-line>" . avy-goto-line)
|
||||||
|
("M-g w" . ave-goto-word)))
|
||||||
|
|
||||||
|
(use-package link-hint
|
||||||
|
:if (package-installed-p 'link-hint)
|
||||||
|
:bind (("M-g l o" . link-hint-open-link)
|
||||||
|
("M-g l c" . link-hint-copy-link)))
|
||||||
|
|
||||||
(use-package tempel
|
(use-package tempel
|
||||||
:if (package-installed-p 'tempel)
|
:if (package-installed-p 'tempel)
|
||||||
:defines tempel-path
|
:defines tempel-path
|
||||||
|
|
Loading…
Reference in a new issue