summaryrefslogtreecommitdiff
path: root/config.org
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-11-24 23:03:14 +0100
committeryuzu-eva <stevenhu@web.de>2023-11-24 23:03:14 +0100
commitc0807e9e6b146f7b9aa0ac5c6e51978f8300b2b6 (patch)
tree1f7a4b969885dafe83861dd072fd942e7160d365 /config.org
parent984ff741cdb05cd653ce8e53dae95b9c2d2ad0d1 (diff)
Update Introduction section
Diffstat (limited to 'config.org')
-rw-r--r--config.org13
1 files changed, 12 insertions, 1 deletions
diff --git a/config.org b/config.org
index 618786e..ef8f69f 100644
--- a/config.org
+++ b/config.org
@@ -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=