From 21e954c5a57e5ad66a238dfce3d3332010d2d311 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 30 Sep 2020 00:34:37 +0200 Subject: [PATCH] Emacs: Add GDScript mode. --- init.d/programming/misc.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.d/programming/misc.el b/init.d/programming/misc.el index 013b7ae..405228b 100644 --- a/init.d/programming/misc.el +++ b/init.d/programming/misc.el @@ -1,6 +1,6 @@ ;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-07-24T16:50:24+0200> +;; Time-stamp: <2020-09-30T00:33:51+0200> ;;; Commentary: ;; Programming languages and build systems that don't warrant a dedicated file. @@ -28,5 +28,8 @@ (use-package meson-mode) +;; GDScript from the Godot Engine. +(use-package gdscript-mode) + (provide 'programming/misc) ;;; misc.el ends here