blob: 016b9cef99e2b6a0bd873a7b98854ba99e56c9a3 (
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 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"}])
{1 :kristijanhusak/vim-dadbod-ui
:dependencies [{1 :tpope/vim-dadbod :lazy true}
{1 :tpope/vim-dotenv :lazy true}
{1 :kristijanhusak/vim-dadbod-completion
:ft [:sql :plsql]
:lazy true}]
: keys
; :event :VeryLazy
:init (fn []
(set vim.g.db_ui_use_nerd_fonts 1)
(set vim.g.db_ui_winwidth 40)
(set vim.g.db_ui_notification_width 39))}
|