diff --git a/README.org b/README.org index 1fd735d..e181c84 100644 --- a/README.org +++ b/README.org @@ -19,7 +19,7 @@ Here is the complete list of other optional dependencies: - [[https://github.com/hunspell/hunspell][Hunspell]]: if Hunspell is installed, Theurgy will use it and a dictionary file in the =user-emacs-directory= to provide completions with both flyspell and ispell. The =theurgy-hunspell-dict= variable can be customized to select a different dictionary than the =en_AU.dict= used by default. Additionally, the =ispell-dictionary= and =ispell-local-dictionary-alist= variables should be customised accordingly to get rid of the =en_AU= locale. - =all-the-icons=: =all-the-icons= requires icons to be manually installed with =all-the-icons-install-fonts= at least once. - [[https://git.cyan.sh/BirDt/ouroboros-emacs-themes][Ouroboros Emacs Themes]]: Ouroboros themes depend on [[https://git.cyan.sh/BirDt/ouroboros-emacs-themes#headline-6][3 fonts]] to properly display. These themes are not automatically loaded, so you may choose to load any other theme. -- [[https://github.com/gomuks/gomuks][gomuks]]: I've tried to provide some basic integration with Gomuks, as it is more usable for me than ement at the moment due to Pantalaimon not working properly. (Note to self, on Void this also requires ~xdg-utils~ to be installed to log in with SSO) +- [[https://github.com/gomuks/gomuks][gomuks]]: I've tried to provide some basic integration with Gomuks, as it is more usable for me than ement at the moment due to Pantalaimon not working properly. In addition, =git= is a _hard dependency_ that must be installed for Theurgy to work. diff --git a/workflows/godot-custom.el b/workflows/godot-custom.el deleted file mode 100644 index ae93aed..0000000 --- a/workflows/godot-custom.el +++ /dev/null @@ -1,42 +0,0 @@ -;;; godot-custom.el --- Customisations for using Godot -*- lexical-binding: t -*- - -;; This file is not part of GNU Emacs - -;; This program is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - - -;;; Commentary: - -;; commentary - -;;; Code: - -(use-package gdscript-mode - :straight (gdscript-mode - :type git - :host github - :repo "godotengine/emacs-gdscript-mode")) - -(defcustom gdscript-treesitter-location nil - "Location for gdscript's treesitter library." - :type 'string - :group 'gdscript-mode) - -(when gdscript-treesitter-location - (add-to-list 'treesit-extra-load-path gdscript-treesitter-location) - (add-to-list 'major-mode-remap-alist '(gdscript-mode . gdscript-ts-mode))) - -(provide 'godot-custom) - -;;; godot-custom.el ends here