Neovim: Add dadbod plugin for interacting with databases

This commit is contained in:
Tony Grosinger 2024-05-30 20:56:54 -07:00
parent dbf7186397
commit 239579f8cd
2 changed files with 12 additions and 1 deletions

View File

@ -783,7 +783,7 @@ require('lazy').setup({
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
opts = {
ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' },
ensure_installed = { 'bash', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc', 'sql', 'go', 'typescript', 'javascript' },
-- Autoinstall languages that are not installed
auto_install = true,
highlight = {

View File

@ -0,0 +1,11 @@
-- UI for working with databases from within vim.
-- https://github.com/tpope/vim-dadbod
-- https://github.com/kristijanhusak/vim-dadbod-ui
return {
'tpope/vim-dadbod',
dependencies = {
'kristijanhusak/vim-dadbod-ui',
'kristijanhusak/vim-dadbod-completion',
},
config = function() end,
}