From 87f5c30487776e099211e91ad3b70683105283d4 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 17 Oct 2024 21:13:09 -0400 Subject: [PATCH] fix(emacs): add keybind for calling `justl` Signed-off-by: Lucas Sta Maria --- .emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index e804625..1247d4b 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -188,7 +188,8 @@ (markdown-inline-code-face ((t (:inherit nano-salient))))) (use-package rjsx-mode :straight t) (use-package just-mode :straight t) -(use-package justl :straight t) +(use-package justl :straight t + :bind (("C-c j" . #'justl))) (use-package scribble-mode :straight t) (use-package go-mode :straight t) (use-package auctex :straight t)