fix(sql): fix autocomplete, it was using the wrong plugin name on the LazyVim.has check

This commit is contained in:
Igor Guerrero 2024-11-27 17:56:57 -06:00
parent 13dc88a317
commit d2925d654b
No known key found for this signature in database
GPG key ID: 9B6A448FD16FE5A9

View file

@ -48,7 +48,7 @@ return {
vim.api.nvim_create_autocmd("FileType", {
pattern = sql_ft,
callback = function()
if LazyVim.has("cmp") then
if LazyVim.has("nvim-cmp") then
local cmp = require("cmp")
-- global sources