diff options
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))} |