diff --git a/emacs/config.org b/emacs/config.org index 472aae8..402aa6b 100644 --- a/emacs/config.org +++ b/emacs/config.org @@ -314,6 +314,11 @@ Enabling Emacs-LSP to use LSPs, I am very dry on syntax highlighters right now. :hook ((c-mode c++-mode objc-mode cuda-mode) . (lambda () (require 'ccls) (lsp)))) #+END_SRC +*** Zig +#+BEGIN_SRC elisp + (use-package zig-mode + :mode "\\.zig\\'") +#+END_SRC * Which-key Amazing tool, love it a bunch. #+BEGIN_SRC elisp diff --git a/emacs/mkEmacs.nix b/emacs/mkEmacs.nix index 8f46988..a707d08 100644 --- a/emacs/mkEmacs.nix +++ b/emacs/mkEmacs.nix @@ -61,6 +61,7 @@ in geiser-guile lsp-haskell catppuccin-theme + zig-mode ; treesit-grammars = e.treesit-grammars.with-all-grammars;