hlchunk
URL: https://github.com/shellRaining/hlchunk.nvim/
Maintainers: Gaetan Lepage
plugins.hlchunk.enable
Whether to enable hlchunk.nvim.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.hlchunk.package
The hlchunk.nvim package to use.
Type: package
Default:
pkgs.vimPlugins.hlchunk-nvim
Declared by:
plugins.hlchunk.autoLoad
Whether to automatically load hlchunk.nvim when neovim starts.
Type: boolean
Default:
false
when lazy-loading is enabled.
Example:
false
Declared by:
plugins.hlchunk.settings
Options provided to the require('hlchunk').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
blank = {
enable = false;
};
chunk = {
chars = {
horizontal_line = "─";
left_bottom = "╰";
left_top = "╭";
right_arrow = "─";
vertical_line = "│";
};
enable = true;
exclude_filetypes = {
lazyterm = true;
neo-tree = true;
};
style = {
fg = "#91bef0";
};
use_treesitter = true;
};
indent = {
chars = [
"│"
];
exclude_filetypes = {
lazyterm = true;
neo-tree = true;
};
style = {
fg = "#45475a";
};
use_treesitter = false;
};
line_num = {
style = "#91bef0";
use_treesitter = true;
};
}
Declared by: