-
Notifications
You must be signed in to change notification settings - Fork 9
/
indent-blankline.nix
41 lines (35 loc) · 977 Bytes
/
indent-blankline.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# homepage: https://github.com/lukas-reineke/indent-blankline.nvim
# nixvim doc: https://nix-community.github.io/nixvim/plugins/indent-blankline/index.html
_:
{
# Enable catppuccin colors
# https://github.com/catppuccin/nvim/blob/main/lua/catppuccin/groups/integrations/indent_blankline.lua
rootOpts.colorschemes.catppuccin.settings.integrations.indent_blankline = true;
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/indent-blankline.lua#L15-L41
opts = {
enable = true;
settings = {
indent.char = "▏";
# Disable scope highlighting
scope.enabled = false;
exclude.filetypes = [
"aerial"
"alpha"
"dashboard"
"lazy"
"mason"
"neo-tree"
"NvimTree"
"neogitstatus"
"notify"
"startify"
"toggleterm"
"Trouble"
];
scope = {
show_start = false;
show_end = false;
};
};
};
}