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 530c82b commit ce7e7f3Copy full SHA for ce7e7f3
init.lua
@@ -429,7 +429,17 @@ require('lazy').setup({
429
430
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
431
-- used for completion, annotations and signatures of Neovim apis
432
- { 'folke/lazydev.nvim', ft = 'lua', opts = {} },
+ {
433
+ 'folke/lazydev.nvim',
434
+ ft = 'lua',
435
+ opts = {
436
+ library = {
437
+ -- Load luvit types when the `vim.uv` word is found
438
+ { path = 'luvit-meta/library', words = { 'vim%.uv' } },
439
+ },
440
441
442
+ { 'Bilal2453/luvit-meta', lazy = true },
443
},
444
config = function()
445
-- Brief aside: **What is LSP?**
0 commit comments