mirror of
https://github.com/marianozunino/nvim.git
synced 2025-10-28 19:30:41 -03:00
dev: automated commit - 2025-08-27 17:32:41
This commit is contained in:
parent
05a716e91b
commit
4c1fd716a2
11 changed files with 333 additions and 62 deletions
|
|
@ -4,6 +4,20 @@ local M = {
|
|||
"nvim-lua/plenary.nvim",
|
||||
{ "L3MON4D3/LuaSnip", version = "v2.*" },
|
||||
"folke/lazydev.nvim",
|
||||
{
|
||||
"MattiasMTS/cmp-dbee",
|
||||
dependencies = {
|
||||
{ "kndndrj/nvim-dbee" },
|
||||
},
|
||||
ft = "sql", -- optional but good to have
|
||||
opts = {}, -- needed
|
||||
},
|
||||
{
|
||||
"saghen/blink.compat",
|
||||
version = "2.*",
|
||||
lazy = true,
|
||||
opts = {},
|
||||
},
|
||||
},
|
||||
version = "*",
|
||||
}
|
||||
|
|
@ -34,11 +48,15 @@ M.config = function()
|
|||
},
|
||||
|
||||
sources = {
|
||||
default = { "lsp", "path", "snippets", "buffer", "dadbod", "lazydev" },
|
||||
default = { "lsp", "path", "snippets", "buffer", "lazydev" },
|
||||
providers = {
|
||||
dadbod = { name = "Dadbod", module = "vim_dadbod_completion.blink" },
|
||||
dbee = { name = "cmp-dbee", module = "blink.compat.source" },
|
||||
lazydev = { module = "lazydev.integrations.blink", score_offset = 100 },
|
||||
},
|
||||
|
||||
per_filetype = {
|
||||
sql = { "dbee", "buffer" },
|
||||
},
|
||||
},
|
||||
|
||||
signature = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue