diff options
| author | 2026-04-01 11:25:27 -0700 | |
|---|---|---|
| committer | 2026-04-01 11:29:50 -0700 | |
| commit | 0e8038216d43d979c31a440bace1402819173207 (patch) | |
| tree | fb752d9d8ed761e42cae8b2e109da059fc79cbf1 | |
| parent | d2f612b4b44d1767c4f7f7c01eb06ab148f74a7c (diff) | |
| download | emacs-config-0e8038216d43d979c31a440bace1402819173207.tar.gz emacs-config-0e8038216d43d979c31a440bace1402819173207.zip | |
oni-sql: Add
Configuration for ‘sql-mode’.
| -rw-r--r-- | oni-sql.el | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/oni-sql.el b/oni-sql.el new file mode 100644 index 0000000..e9f1665 --- /dev/null +++ b/oni-sql.el @@ -0,0 +1,33 @@ +;;; oni-sql.el --- Configuration for SQL-mode -*- lexical-binding: t; -*- + +;; Copyright (C) 2026 Tom Willemse + +;; Author: Tom Willemse <tom@ryuslash.org> +;; Keywords: local +;; Version: 2026.0401.112757 + +;; 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 <https://www.gnu.org/licenses/>. + +;;; Commentary: + +;; Configuration for ‘sql-mode’. + +;;; Code: + +(require 'sql) + +(define-key sql-mode-map (kbd "C-c C-b") 'sql-set-sqli-buffer) + +(provide 'oni-sql) +;;; oni-sql.el ends here |
