From 126855525e487a29e8b1b9263b9846559f184ea0 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 7 Apr 2024 20:33:23 +0200 Subject: [PATCH] pinwheel: Add `scala-mode` to `emacs` --- hosts/pinwheel/modules/emacs/config.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/pinwheel/modules/emacs/config.org b/hosts/pinwheel/modules/emacs/config.org index 13be011..50f94b9 100644 --- a/hosts/pinwheel/modules/emacs/config.org +++ b/hosts/pinwheel/modules/emacs/config.org @@ -502,6 +502,7 @@ Setup prefix for keybindings. (typescript-ts-mode . eglot-ensure) (rust-mode . eglot-ensure) (glsl-mode . eglot-ensure) + (scala-mode . eglot-ensure) ) ) #+END_SRC @@ -569,3 +570,8 @@ Setup prefix for keybindings. #+BEGIN_SRC emacs-lisp (use-package glsl-mode) #+END_SRC +** Scala +#+BEGIN_SRC emacs-lisp + (use-package scala-mode + :interpreter ("scala" . scala-mode)) +#+END_SRC