nvim/lua/plugins/lazydev.lua

15 lines
381 B
Lua
Raw Normal View History

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" } },
},
},
},
{ "folke/neodev.nvim", enabled = false }, -- make sure to uninstall or disable neodev.nvim
}