From a4ae068bf8f725280087d179b55731389e2896d9 Mon Sep 17 00:00:00 2001 From: Jakub Date: Fri, 26 Sep 2025 19:01:30 +0800 Subject: [PATCH] Disable aggressive indentation for gdscript mode --- workflows/godot-custom.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/workflows/godot-custom.el b/workflows/godot-custom.el index 218cc52..de77f43 100644 --- a/workflows/godot-custom.el +++ b/workflows/godot-custom.el @@ -27,7 +27,9 @@ :type git :host github :repo "godotengine/emacs-gdscript-mode") - :hook (gdscript-mode . eglot-ensure)) + :hook (gdscript-mode . eglot-ensure) + :init + (add-hook 'gdscript-mode-hook (lambda () (aggressive-indent-mode -1)))) (defcustom gdscript-treesitter-location nil "Location for gdscript's treesitter library."