From e8ddf9fa34000eac7b8e7e09cd4db9848cfc24d9 Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Sun, 14 Apr 2024 21:44:03 +0400 Subject: [PATCH] fix stupid bug concerning vim-dadbod-completions i used 'requires' instead of 'dependencies' and that's why the completions weren't working lol --- nvim/lua/themystery/plugins/sql.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/themystery/plugins/sql.lua b/nvim/lua/themystery/plugins/sql.lua index 321509e..4af0952 100644 --- a/nvim/lua/themystery/plugins/sql.lua +++ b/nvim/lua/themystery/plugins/sql.lua @@ -3,7 +3,7 @@ return { { 'kristijanhusak/vim-dadbod-completion', ft = sql_ft, - requires = { 'kristijanhusak/vim-dadbod', lazy = true}, + dependencies = { 'kristijanhusak/vim-dadbod', lazy = true}, lazy = true, init = function() vim.api.nvim_create_autocmd("FileType", {