feat: add zig-mode

This commit is contained in:
Artur Manuel 2024-09-24 04:56:51 +01:00
commit 5a4dafc01b
Failed to generate hash of commit
2 changed files with 6 additions and 0 deletions

View file

@ -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) . :hook ((c-mode c++-mode objc-mode cuda-mode) .
(lambda () (require 'ccls) (lsp)))) (lambda () (require 'ccls) (lsp))))
#+END_SRC #+END_SRC
*** Zig
#+BEGIN_SRC elisp
(use-package zig-mode
:mode "\\.zig\\'")
#+END_SRC
* Which-key * Which-key
Amazing tool, love it a bunch. Amazing tool, love it a bunch.
#+BEGIN_SRC elisp #+BEGIN_SRC elisp

View file

@ -61,6 +61,7 @@ in
geiser-guile geiser-guile
lsp-haskell lsp-haskell
catppuccin-theme catppuccin-theme
zig-mode
; ;
treesit-grammars = e.treesit-grammars.with-all-grammars; treesit-grammars = e.treesit-grammars.with-all-grammars;