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 68af43d commit 8a4a5d2Copy full SHA for 8a4a5d2
init.lua
@@ -491,7 +491,17 @@ require('lazy').setup({
491
492
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
493
-- used for completion, annotations and signatures of Neovim apis
494
- { 'folke/lazydev.nvim', ft = 'lua', opts = {} },
+ {
495
+ 'folke/lazydev.nvim',
496
+ ft = 'lua',
497
+ opts = {
498
+ library = {
499
+ -- Load luvit types when the `vim.uv` word is found
500
+ { path = 'luvit-meta/library', words = { 'vim%.uv' } },
501
+ },
502
503
504
+ { 'Bilal2453/luvit-meta', lazy = true },
505
},
506
config = function()
507
-- Brief aside: **What is LSP?**
0 commit comments