about summary refs log tree commit diff stats
path: root/emacs-prelude/personal/lisp/init-lsp.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-prelude/personal/lisp/init-lsp.el')
-rw-r--r--emacs-prelude/personal/lisp/init-lsp.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs-prelude/personal/lisp/init-lsp.el b/emacs-prelude/personal/lisp/init-lsp.el
index 6568229..9f8f1cd 100644
--- a/emacs-prelude/personal/lisp/init-lsp.el
+++ b/emacs-prelude/personal/lisp/init-lsp.el
@@ -21,7 +21,8 @@
         lsp-enable-indentation nil
         lsp-completion-enable nil)
   (key-chord-define-global "QQ" 'lsp-find-references)
-  (key-chord-define-global "GG" 'lsp-find-definition))
+  (key-chord-define-global "PP" 'lsp-peek-find-references)
+  (key-chord-define-global "GG" 'lsp-find-definition)
+  (key-chord-define-global "DD" 'lsp-peek-find-definition))
 
 (provide 'init-lsp)
-