GLSL + RmlUi
This commit is contained in:
parent
998c112bf7
commit
9a7afedc2f
1 changed files with 12 additions and 0 deletions
12
config.org
12
config.org
|
|
@ -71,6 +71,8 @@
|
||||||
- [[#password-store][Password store]]
|
- [[#password-store][Password store]]
|
||||||
- [[#language-support][Language support]]
|
- [[#language-support][Language support]]
|
||||||
- [[#nix][Nix]]
|
- [[#nix][Nix]]
|
||||||
|
- [[#glsl][GLSL]]
|
||||||
|
- [[#rmlui][RmlUi]]
|
||||||
- [[#cmake][CMake]]
|
- [[#cmake][CMake]]
|
||||||
- [[#global-treesitter][Global treesitter]]
|
- [[#global-treesitter][Global treesitter]]
|
||||||
- [[#eglot][Eglot]]
|
- [[#eglot][Eglot]]
|
||||||
|
|
@ -1199,6 +1201,16 @@ Emacs has built-in programming language modes for Lisp, Scheme, DSSSL, Ada, ASM,
|
||||||
:ensure t
|
:ensure t
|
||||||
:mode "\\.nix\\'")
|
:mode "\\.nix\\'")
|
||||||
#+end_src
|
#+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
|
** CMake
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(add-to-list 'auto-mode-alist '("CMakeLists\\.txt\\'" . cmake-ts-mode))
|
(add-to-list 'auto-mode-alist '("CMakeLists\\.txt\\'" . cmake-ts-mode))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue