From 8ac7f4a5ae5268559ccb3d84e179013e5e89c15c Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Fri, 29 Dec 2023 04:39:31 -0500 Subject: [PATCH] fix(emacs): add additional scribble configuration Signed-off-by: Lucas Sta Maria --- .emacs.d/include/racket.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.emacs.d/include/racket.el b/.emacs.d/include/racket.el index 1a9d75d..4b742ae 100644 --- a/.emacs.d/include/racket.el +++ b/.emacs.d/include/racket.el @@ -11,5 +11,11 @@ (setq auto-mode-alist (cons '("\\.pm$" . pollen-mode) auto-mode-alist)) (setq auto-mode-alist (cons '("\\.pmd$" . pollen-mode) auto-mode-alist)) +(defun configure-scribble () + "Configure keybinds for scribble" + (local-set-key (kbd "C-c C-c") #'compile)) + +(add-hook 'scribble-mode-hook #'configure-scribble) + (provide 'racket) ;;; racket.el ends here