Files
nvim/lua/plugins/lazydev.lua
2026-02-01 16:47:27 +05:00

16 lines
280 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' } },
{ 'nvim-dap-ui' }
},
}
}