mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(sql): fix autocomplete, it was using the wrong plugin name on the LazyVim.has check
This commit is contained in:
parent
13dc88a317
commit
d2925d654b
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ return {
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
pattern = sql_ft,
|
pattern = sql_ft,
|
||||||
callback = function()
|
callback = function()
|
||||||
if LazyVim.has("cmp") then
|
if LazyVim.has("nvim-cmp") then
|
||||||
local cmp = require("cmp")
|
local cmp = require("cmp")
|
||||||
|
|
||||||
-- global sources
|
-- global sources
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue