lazydev
URL: https://github.com/folke/lazydev.nvim/
Maintainers: Heitor Augusto
A plugin that properly configures LuaLS for editing your Neovim config by lazily updating your workspace libraries.
lazydev.nvim as a blink.cmp source
{
plugins = {
lazydev.enable = true;
blink-cmp.settings = {
sources.providers = {
lazydev = {
name = "LazyDev";
module = "lazydev.integrations.blink";
# make lazydev completions top priority (see `:h blink.cmp`)
score_offset = 100;
};
};
};
};
}
plugins.lazydev.enable
Whether to enable lazydev.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.lazydev.package
The lazydev package to use.
Type: package
Default:
pkgs.vimPlugins.lazydev-nvim
Declared by:
plugins.lazydev.autoLoad
Whether to automatically load lazydev when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.lazydev.callSetup
Whether to generate the standard require('lazydev').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by: