about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/lisp/init-sql.el1
-rw-r--r--.emacs.d/lisp/init-web.el1
2 files changed, 2 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-sql.el b/.emacs.d/lisp/init-sql.el
index d7fa708..c3dd7c2 100644
--- a/.emacs.d/lisp/init-sql.el
+++ b/.emacs.d/lisp/init-sql.el
@@ -4,6 +4,7 @@
 
 (use-package sql
   :ensure nil
+  :commands add-sql-connection
   :config
   ;; partially inspired by https://dev.to/viglioni/emacs-as-sql-client-with-lsp-143l (but currently only works for postgres)
   (defun add-sql-connection (name product port server user password database extra)
diff --git a/.emacs.d/lisp/init-web.el b/.emacs.d/lisp/init-web.el
index f6eb515..2a633d3 100644
--- a/.emacs.d/lisp/init-web.el
+++ b/.emacs.d/lisp/init-web.el
@@ -44,6 +44,7 @@
 
 (use-package tagedit
   :diminish
+  :commands tagedit-mode
   :config (tagedit-add-paredit-like-keybindings)
   :hook (html-mode . (lambda () (tagedit-mode 1))))