mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-21 18:18:31 +02:00
15 lines
383 B
Lua
15 lines
383 B
Lua
|
return {
|
||
|
{
|
||
|
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
|
||
|
-- used for completion, annotations and signatures of Neovim apis
|
||
|
'folke/lazydev.nvim',
|
||
|
ft = 'lua',
|
||
|
opts = {
|
||
|
library = {
|
||
|
-- Load luvit types when the `vim.uv` word is found
|
||
|
{ path = 'luvit-meta/library', words = { 'vim%.uv' } },
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|