new-main #1

Open
SailReal wants to merge 90 commits from new-main into main
1 changed files with 11 additions and 1 deletions
Showing only changes of commit 620732789b - Show all commits

View File

@ -413,7 +413,17 @@ require('lazy').setup({
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
-- used for completion, annotations and signatures of Neovim apis
{ 'folke/lazydev.nvim', ft = 'lua', opts = {} },
{
'folke/lazydev.nvim',
ft = 'lua',
opts = {
library = {
-- Load luvit types when the `vim.uv` word is found
{ path = 'luvit-meta/library', words = { 'vim%.uv' } },
},
},
},
{ 'Bilal2453/luvit-meta', lazy = true },
},
config = function()
-- Brief aside: **What is LSP?**