mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
39 lines
702 B
Nix
39 lines
702 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "indent-blankline";
|
|
moduleName = "ibl";
|
|
package = "indent-blankline-nvim";
|
|
description = "This plugin adds indentation guides to Neovim.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
indent = {
|
|
char = "│";
|
|
};
|
|
scope = {
|
|
show_start = false;
|
|
show_end = false;
|
|
show_exact_scope = true;
|
|
};
|
|
exclude = {
|
|
filetypes = [
|
|
""
|
|
"checkhealth"
|
|
"help"
|
|
"lspinfo"
|
|
"packer"
|
|
"TelescopePrompt"
|
|
"TelescopeResults"
|
|
"yaml"
|
|
];
|
|
buftypes = [
|
|
"terminal"
|
|
"quickfix"
|
|
];
|
|
};
|
|
};
|
|
}
|