.dotfiles/.config/nvim/lua/plugins/lazydev.lua
2025-04-16 22:54:23 +03:00

15 lines
546 B
Lua

-- lazydev.nvim is a plugin that properly configures LuaLS for editing your Neovim config by
-- lazily updating your workspace libraries.
return {
'folke/lazydev.nvim',
ft = 'lua',
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" } },
'~/.local/share/nvim/lazy/',
{ path = "snacks.nvim", words = { "Snacks", "snacks" } },
},
}
}