blob: 733a4a076ca197f6e3a3563f925a78c7d55469a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;; Plugins for interacting with databases.
(local dependencies [{1 :tpope/vim-dadbod :lazy true}
{1 :tpope/vim-dotenv :lazy true}
{1 :kristijanhusak/vim-dadbod-completion
:ft [:sql :plsql]
:lazy true}])
(local keys [{1 :<leader>dn
2 :<cmd>DBUIToggle<cr>
:mode :n
:desc "Toggle Dadbod UI"}
{1 :<leader>de
2 :<cmd>DBUIAddConnection<cr>
:mode :n
:desc "Add DB connection"}])
(λ init []
(set vim.g.db_ui_use_nerd_fonts 1)
(set vim.g.db_ui_winwidth 40)
(set vim.g.db_ui_notification_width 39))
{1 :kristijanhusak/vim-dadbod-ui : dependencies : keys : init}
|