13 lines
300 B
Lua
13 lines
300 B
Lua
---@module 'lazy'
|
|
---@type LazySpec
|
|
return { {
|
|
'folke/lazydev.nvim', -- provides the lua LSP for the neovim config.
|
|
event = 'VeryLazy',
|
|
ft = 'lua',
|
|
opts = {
|
|
library = {
|
|
{ path = '${3rd}/luv/library', words = { 'vim%.uv' } }, -- load luvit types when the `vim.uv` word is found
|
|
},
|
|
},
|
|
}, }
|