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 d25612f commit 6eb8599Copy full SHA for 6eb8599
init.lua
@@ -989,7 +989,17 @@ require('lazy').setup({
989
990
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
991
-- used for completion, annotations and signatures of Neovim apis
992
- { 'folke/lazydev.nvim', ft = 'lua', opts = {} },
+ {
993
+ 'folke/lazydev.nvim',
994
+ ft = 'lua',
995
+ opts = {
996
+ library = {
997
+ -- Load luvit types when the `vim.uv` word is found
998
+ { path = 'luvit-meta/library', words = { 'vim%.uv' } },
999
+ },
1000
1001
1002
+ { 'Bilal2453/luvit-meta', lazy = true },
1003
},
1004
config = function()
1005
-- Brief aside: **What is LSP?**
0 commit comments