1
0
Fork 0

fix(emacs): limit keybind to irony mode mapping

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-11-10 01:47:12 -05:00
parent 244ac6b140
commit 6d1e0d6c9f
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -100,7 +100,7 @@
(use-package inf-elixir :straight t)
(use-package nix-mode :straight t)
(use-package irony :straight t
:bind (("C-c C-c" . custom-compile-c++))
:bind (:map irony-mode-map ("C-c C-c" . custom-compile-c++))
:hook ((c++-mode c-mode) . irony-mode))
(provide 'priime-languages)