docs(emacs/programming): never really used emacsql directly

This commit is contained in:
Lucien Cartier-Tilet 2025-03-02 14:17:42 +01:00
parent ec0fe5c43c
commit 6b379bfaf8
Signed by: phundrak
GPG Key ID: 347803E8073EACE0

View File

@ -64,25 +64,6 @@ it is.
appwrite-devel t))
#+end_src
*** Databases
A really cool tool in Emacs for manipulating databases is ~emacsql~.
Its able to manipulate SQLite databases by default, but its also
possible to manipulate MariaDB and PostgreSQL databases by installing
additional packages. For now, I just need SQLite and PostgreSQL
interfaces, so lets install the relevant packages.
#+begin_src emacs-lisp
(use-package emacsql-psql
:defer t
:after (emacsql)
:straight (:build t))
(with-eval-after-load 'emacsql
(phundrak/major-leader-key
:keymaps 'emacs-lisp-mode-map
:packages '(emacsql)
"E" #'emacsql-fix-vector-indentation))
#+end_src
*** Flycheck
#+begin_src emacs-lisp
(use-package flycheck