diff options
| author | yuzu-eva <stevenhu@web.de> | 2023-11-24 23:03:14 +0100 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2023-11-24 23:03:14 +0100 |
| commit | c0807e9e6b146f7b9aa0ac5c6e51978f8300b2b6 (patch) | |
| tree | 1f7a4b969885dafe83861dd072fd942e7160d365 | |
| parent | 984ff741cdb05cd653ce8e53dae95b9c2d2ad0d1 (diff) | |
Update Introduction section
| -rw-r--r-- | config.org | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -12,7 +12,7 @@ yuzu-emacs is my personal configuration for emacs. It is a very basic configuration, which is heavily inspired by [[https://github.com/snackon/Witchmacs][Witchmacs]], the main difference is that this configuration uses standard emacs keybindings, no evil mode at all. Mainly used for programming in C and writing documents in -org-mode. Dashboard is just a picture of Cirno, because why not. +org-mode. * Terminal @@ -579,6 +579,17 @@ Magical Git interface :ensure t) #+end_src +** Initialize =GLSL-mode= + +Mode for OpenGL Shading Language + +#+begin_src emacs-lisp + (use-package glsl-mode + :ensure t + :config + (add-to-list 'auto-mode-alist '("\\.fs$" . glsl-mode))) +#+end_src + * Programming section ** Initialize =company= |
