diff options
author | William Carroll <wpcarro@gmail.com> | 2022-08-08T17·53-0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-08-08T17·56+0000 |
commit | b92ceccfdb9d1ba6172e53008e1b5afea32ca20d (patch) | |
tree | d4afa3d81cab1546b849e47cbbc5d79b5a271943 /users/wpcarro/emacs/.emacs.d/wpc/keybindings.el | |
parent | 60f6f5f10e29a67092a6d71e08f92d4631d02617 (diff) |
fix(wpcarro/emacs): Update rust configuration r/4393
- Prefer LSP to racer - Move KBDs to central location Change-Id: Ib3fbf1b383d711f3ac6dd6d7791374b014b9df90 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6054 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d/wpc/keybindings.el')
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/keybindings.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el index 75ac95611f5d..16b3d6c8f3e8 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el @@ -454,5 +454,19 @@ "C-v" #'clipboard-yank "C-S-v" #'clipboard-yank) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Rust +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(general-define-key + :keymaps '(rust-mode-map) + :states '(normal) + "gd" #'lsp-find-definition + "gr" #'lsp-find-references) + +(general-define-key + :keymaps '(rust-mode-map) + "TAB" #'company-indent-or-complete-common) + (provide 'keybindings) ;;; keybindings.el ends here |