Add dadbod plugin for SQL manipulations

This commit is contained in:
pro100ton 2024-12-06 22:21:39 +03:00
parent 810f8f04d2
commit 969288d942
2 changed files with 88 additions and 76 deletions

View file

@ -0,0 +1,5 @@
return {
"tpope/vim-dadbod",
"kristijanhusak/vim-dadbod-completion",
"kristijanhusak/vim-dadbod-ui",
}

View file

@ -79,5 +79,12 @@ return {
}),
},
})
cmp.setup.filetype({ "sql" }, {
sources = {
{ name = "vim-dadbod-completion" },
{ name = "buffer" }
}
})
end,
}