Files
nvim/lua/plugins/lazydev.lua
2026-02-01 12:45:24 +05:00

16 lines
290 B
Lua

-- Faster LuaLS setup for Neovim
return {
'folke/lazydev.nvim',
enabled = true,
lazy = false,
ft = 'lua',
opts = {
library = {
-- Load luvit types when the `vim.uv` word is found
{ path = '${3rd}/luv/library', words = { 'vim%.uv' } },
library = { "nvim-dap-ui" }
},
}
}