dotfiles/nvim/lua/plugins/lazydev.lua

15 lines
389 B
Lua
Raw Normal View History

2024-06-23 19:33:59 +02:00
return {
{
"folke/lazydev.nvim",
ft = "lua", -- only load on lua files
opts = {
library = {
-- See the configuration section for more details
-- Load luvit types when the `vim.uv` word is found
{ path = "luvit-meta/library", words = { "vim%.uv" } },
},
},
},
{ "Bilal2453/luvit-meta", lazy = true }, -- optional `vim.uv` typings
}