From 0840187a4ff47dd297b20915aee2a05a5c0f6e51 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Mon, 16 Sep 2024 15:51:31 -0700 Subject: [PATCH] Fix glitch with parinfer-rust-mode on fresh install --- thoom-emacs/modules/thoom-lisp.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/thoom-emacs/modules/thoom-lisp.el b/thoom-emacs/modules/thoom-lisp.el index e5c64db..656d9de 100644 --- a/thoom-emacs/modules/thoom-lisp.el +++ b/thoom-emacs/modules/thoom-lisp.el @@ -8,8 +8,8 @@ :repo "justinbarclay/parinfer-rust-mode" :ref - "8df117a3b54d9e01266a3905b132a1d082944702")) - (use-package parinfer-rust-mode :ensure t)) - -(use-package parinfer-rust-mode - :hook emacs-lisp-mode) + "8df117a3b54d9e01266a3905b132a1d082944702") + :hook emacs-lisp-mode) + (use-package parinfer-rust-mode + :ensure t + :hook emacs-lisp-mode))