just and nasm
This commit is contained in:
parent
d6eeea99d9
commit
8f13c0eef1
23
init.org
23
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue