diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-17 22:38:00 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-17 22:38:00 +0200 |
| commit | 1f34bacc0961ce720813ef34a04938ee5aca9565 (patch) | |
| tree | 2c31f95bc384ba755884e2fe317c4c82db69ecc7 /fnl/plugins/editor/dadbod.fnl | |
| parent | 802ddca9b830bb08427cd6054eec384103c364c4 (diff) | |
Add dadbod
Diffstat (limited to 'fnl/plugins/editor/dadbod.fnl')
| -rw-r--r-- | fnl/plugins/editor/dadbod.fnl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fnl/plugins/editor/dadbod.fnl b/fnl/plugins/editor/dadbod.fnl new file mode 100644 index 0000000..6701ee2 --- /dev/null +++ b/fnl/plugins/editor/dadbod.fnl @@ -0,0 +1,22 @@ +;; Plugins for interacting with databases. + +(local keys [{1 :<leader>wn + 2 :<cmd>DBUIToggle<cr> + :mode :n + :desc "Toggle Dadbod UI"} + {1 :<leader>we + 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 + :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))} |