1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/indent-blankline/default.nix
saygo-png 034ae0e276 plugins/indent-blankline: remove settings declarations
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-02 00:01:50 +00:00

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"
];
};
};
}