From 8f13c0eef1cd3f9a061a153683e774aa23baaf57 Mon Sep 17 00:00:00 2001 From: janis Date: Sat, 18 Oct 2025 11:00:53 +0200 Subject: [PATCH] just and nasm --- init.org | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/init.org b/init.org index 0fcbae9..e736e9c 100644 --- a/init.org +++ b/init.org @@ -1635,6 +1635,10 @@ Use =eglot= as an alternative to =lsp-mode=: 'eglot-server-programs '(rust-mode "rust-analyzer")) + (add-to-list + 'eglot-server-programs + '(just-mode + "just-lsp")) (setq-default eglot-workspace-configuration '(:rust-analyzer (:cargo (:buildScripts (:enable t) @@ -2299,6 +2303,25 @@ Use =zls= automatically with lsp, and =zig-mode=: ) #+end_src +** Built Tools +#+begin_src emacs-lisp +(use-package just-mode + :ensure t + :straight t + :mode ("Justfile\\'" . just-mode) + ) +#+end_src + +** Assembly +*** =nasm-mode= +#+begin_src emacs-lisp +(use-package nasm-mode + :ensure t + :straight t + :mode ("\\.asm\\'" . nasm-mode) + ) +#+end_src + ** Nix Use =nix-mode= to edit nix files: #+begin_src emacs-lisp