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.
fs_stat
1 parent dc66ed0 commit 1de8f22Copy full SHA for 1de8f22
init.lua
@@ -417,7 +417,17 @@ require('lazy').setup({
417
418
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
419
-- used for completion, annotations and signatures of Neovim apis
420
- { 'folke/lazydev.nvim', ft = 'lua', opts = {} },
+ {
421
+ 'folke/lazydev.nvim',
422
+ ft = 'lua',
423
+ opts = {
424
+ library = {
425
+ -- Load luvit types when the `vim.uv` word is found
426
+ { path = 'luvit-meta/library', words = { 'vim%.uv' } },
427
+ },
428
429
430
+ { 'Bilal2453/luvit-meta', lazy = true },
431
},
432
config = function()
433
-- Brief aside: **What is LSP?**
0 commit comments