Files
neovim-config/lua/plugins/lazydev.lua
2025-11-25 12:48:41 +09:00

12 lines
328 B
Lua

return {
"folke/lazydev.nvim",
ft = "lua", -- only load on lua files
opts = {
library = {
-- See the configuration section for more details
-- Load luvit types when the `vim.uv` word is found
{ path = "${3rd}/luv/library", words = { "vim%.uv" } },
},
},
}