From 93bbfda8d378e38bcbcc07a1736edf3f99be39a8 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Mon, 4 Jul 2022 15:33:27 +0100 Subject: [PATCH] Add the groovy cube --- core/cubes/groovy.el | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 core/cubes/groovy.el diff --git a/core/cubes/groovy.el b/core/cubes/groovy.el new file mode 100644 index 0000000..935fa88 --- /dev/null +++ b/core/cubes/groovy.el @@ -0,0 +1,38 @@ +;;; GroovyCubes --- The Groovy cubes for FG42 -*- lexical-binding: t; -*- +;; +;; Copyright (c) 2010-2022 Sameer Rahmani & Contributors +;; +;; Author: Sameer Rahmani +;; URL: https://gitlab.com/FG42/FG42 +;; Version: 3.0.0 +;; +;; 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: +;;; Code: +(require 'fpkg) +(require 'fg42/cube) +(require 'fg42/utils) + +(defcube fg42/groovy-cube + "Groovy support for FG42." + (:title "Groovy cube" + :flag groovy + :flag-default t) + + (fpkg/use groovy-emacs-mode + :defer t)) + +(provide 'cubes/groovy) +;;; groovy.el ends here