From 9a7afedc2f42b020dae945199eff4fcc2ee5b21f Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Wed, 16 Apr 2025 16:53:24 +0200 Subject: [PATCH] GLSL + RmlUi --- config.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config.org b/config.org index c77374e..ea959fe 100644 --- a/config.org +++ b/config.org @@ -71,6 +71,8 @@ - [[#password-store][Password store]] - [[#language-support][Language support]] - [[#nix][Nix]] + - [[#glsl][GLSL]] + - [[#rmlui][RmlUi]] - [[#cmake][CMake]] - [[#global-treesitter][Global treesitter]] - [[#eglot][Eglot]] @@ -1199,6 +1201,16 @@ Emacs has built-in programming language modes for Lisp, Scheme, DSSSL, Ada, ASM, :ensure t :mode "\\.nix\\'") #+end_src +** GLSL +#+begin_src emacs-lisp +(use-package glsl-mode + :ensure t) +#+end_src +** RmlUi +#+begin_src emacs-lisp +(add-to-list 'auto-mode-alist '("\\.rml\\'" . html-ts-mode)) +(add-to-list 'auto-mode-alist '("\\.rcss\\'" . css-ts-mode)) +#+end_src ** CMake #+begin_src emacs-lisp (add-to-list 'auto-mode-alist '("CMakeLists\\.txt\\'" . cmake-ts-mode))