diff --git a/.lazy.lua b/.lazy.lua new file mode 100644 index 0000000..b7583e0 --- /dev/null +++ b/.lazy.lua @@ -0,0 +1,21 @@ +return { + { + "folke/lazydev.nvim", + ft = "lua", + opts = { + library = { + { path = "${3rd}/luv/library", words = { "vim%.uv" } }, + }, + }, + }, + { + "hrsh7th/nvim-cmp", + opts = function(_, opts) + opts.sources = opts.sources or {} + table.insert(opts.sources, { + name = "lazydev", + group_index = 0, + }) + end, + }, +}