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