We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
neodev.nvim
lazydev.nvim
1 parent 98ae6d0 commit 98c2400Copy full SHA for 98c2400
lua/modules/plugins/completion.lua
@@ -100,10 +100,19 @@ end
100
101
-- Adding *nvim config dir*, *nvim runtime dir*, *all plugin dir(with /lua dir)* to get
102
-- hover docs and function signatures, but it takes too much time to load all dirs, use it if needed.
103
-completion["folke/neodev.nvim"] = {
+completion["folke/lazydev.nvim"] = {
104
lazy = true,
105
- event = "LspAttach",
106
ft = "lua",
+ dependencies = {
107
+ { "gonstoll/wezterm-types", lazy = true },
108
+ { "Bilal2453/luvit-meta", lazy = true },
109
+ },
110
+ opt = {
111
+ library = {
112
+ { path = "luvit-meta/library", words = { "vim%.uv" } },
113
+ { path = "wezterm-types", mods = { "wezterm" } },
114
115
116
}
117
118
return completion
0 commit comments