mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
12 lines
277 B
Lua
12 lines
277 B
Lua
return {
|
|
"folke/lazydev.nvim",
|
|
ft = "lua", -- only load on lua files
|
|
opts = {
|
|
library = {
|
|
{ path = "${3rd}/luv/library", words = { "vim%.uv" } },
|
|
},
|
|
},
|
|
enabled = function(root_dir)
|
|
return vim.g.lazydev_enabled == nil and true or vim.g.lazy
|
|
end,
|
|
}
|