nvim/lua/plugins/lazydev.lua
sudacode 9c083c98a3
update config to lazy
- add some new plugins
- remove some old ones
- clean up/update some configs
2025-02-16 01:47:35 -08:00

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