From: Dominik Kaiser Date: Wed, 20 Aug 2025 11:41:47 +0000 (+0200) Subject: Add misc coding support X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=5ba55bb181de13da95a19282727f54fcc26494a4;p=config%2Femacs.git Add misc coding support --- diff --git a/README.org b/README.org index efe662d..68d42e9 100644 --- a/README.org +++ b/README.org @@ -234,6 +234,22 @@ These settings ensure that block highlights aren't visible when collapsed. (use-package nix-mode :mode "\\.nix\\'") #+end_src +*** WGSL +#+begin_src elisp + (use-package wgsl-mode + :mode "\\.wgsl\\'") +#+end_src +*** GLSL +#+begin_src elisp + (use-package glsl-mode + :ensure t) +#+end_src +** Tools +*** Simple-httpd +#+begin_src elisp + (use-package simple-httpd + :ensure t) +#+end_src * 42 ** Header #+begin_src elisp diff --git a/init.el b/init.el index c6b2622..e7fc5d0 100644 --- a/init.el +++ b/init.el @@ -163,4 +163,23 @@ (use-package nix-mode :mode "\\.nix\\'") +(use-package wgsl-mode + :mode "\\.wgsl\\'") + +(use-package glsl-mode + :ensure t) + +(use-package simple-httpd + :ensure t) + (load "~/.config/emacs/42header.el") +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages + '(company counsel-projectile direnv doom-modeline doom-themes + evil-nerd-commenter glsl-mode ivy-rich lsp-treemacs magit + nix-mode olivetti org-contrib rust-mode simple-httpd + treemacs-projectile wgsl-mode which-key)))