From a93fa78c4faa82f94c46d2e63d210a0347d31c28 Mon Sep 17 00:00:00 2001 From: Jakub Date: Tue, 28 Oct 2025 09:13:58 +0800 Subject: [PATCH] Add PL/SQL support --- workflows/sql-custom.el | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 workflows/sql-custom.el diff --git a/workflows/sql-custom.el b/workflows/sql-custom.el new file mode 100644 index 0000000..5297a5a --- /dev/null +++ b/workflows/sql-custom.el @@ -0,0 +1,30 @@ +;;; sql-custom.el --- Custom SQL configuration -*- 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: + +;; PL/SQL Support +(use-package plsql) + +(provide 'sql-custom) + +;;; sql-custom.el ends here