just and nasm

This commit is contained in:
janis 2025-10-18 11:00:53 +02:00
parent d6eeea99d9
commit 8f13c0eef1
Signed by: janis
SSH key fingerprint: SHA256:bB1qbbqmDXZNT0KKD5c2Dfjg53JGhj7B3CFcLIzSqq8

View file

@ -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