summaryrefslogtreecommitdiff
path: root/.emacs.d/modules/thanos-tools.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-10-12 00:05:22 +0300
committerThanos Apollo <[email protected]>2023-10-12 00:06:20 +0300
commit58ee489097dfebbdf706ba15ca27991be055e9cc (patch)
tree3654de529bf06bc523548c439b6e02b2d5b826bb /.emacs.d/modules/thanos-tools.el
parent14631edf758a0180bc12657384e91edb54bde030 (diff)
emacs: Fix typos and docstrings
Diffstat (limited to '.emacs.d/modules/thanos-tools.el')
-rw-r--r--.emacs.d/modules/thanos-tools.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/modules/thanos-tools.el b/.emacs.d/modules/thanos-tools.el
index 9e444c3..9d58d75 100644
--- a/.emacs.d/modules/thanos-tools.el
+++ b/.emacs.d/modules/thanos-tools.el
@@ -60,15 +60,18 @@
(setf indent-tabs-mode nil)
;; Register & Consult
+(define-key Info-mode-map (kbd "F") 'consult-info)
(define-key global-map (kbd "C-x r d") 'bookmark-delete)
(define-key global-map (kbd "C-x r C-r") 'bookmark-rename)
(define-key global-map (kbd "C-x r .") 'consult-register)
(define-key global-map (kbd "C-x r s") 'consult-register-store)
+(define-key global-map (kbd "C-x r b") 'consult-bookmark)
(define-key global-map (kbd "C-c g") 'consult-grep)
(define-key global-map (kbd "C-c f") 'consult-find)
(define-key project-prefix-map (kbd "b") 'consult-project-buffer)
(define-key global-map (kbd "M-y") 'consult-yank-from-kill-ring)
+
(setf xref-show-xrefs-function #'consult-xref
xref-show-definitions-function #'consult-xref)