about summary refs log tree commit diff stats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-09-02 11:36:08 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-09-02 11:36:08 +0100
commit72b3a4adddc0af456571b07a392bd027cc54e9ef (patch)
tree898a7a21437adb1e5e82f8f71e7eb3f36cb1587f /.emacs.d/lisp
parentb6b75e70f6c03e26657e550bd62e68617ce782a5 (diff)
downloaddotfiles-72b3a4adddc0af456571b07a392bd027cc54e9ef.tar.gz
Fix some defer-related issues
Diffstat (limited to '.emacs.d/lisp')
-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))))