mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
42 lines
868 B
Nix
42 lines
868 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "hlchunk";
|
|
packPathName = "hlchunk.nvim";
|
|
package = "hlchunk-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
chunk = {
|
|
enable = true;
|
|
use_treesitter = true;
|
|
style.fg = "#91bef0";
|
|
exclude_filetypes = {
|
|
neo-tree = true;
|
|
lazyterm = true;
|
|
};
|
|
chars = {
|
|
horizontal_line = "─";
|
|
vertical_line = "│";
|
|
left_top = "╭";
|
|
left_bottom = "╰";
|
|
right_arrow = "─";
|
|
};
|
|
};
|
|
indent = {
|
|
chars = [ "│" ];
|
|
use_treesitter = false;
|
|
|
|
style.fg = "#45475a";
|
|
exclude_filetypes = {
|
|
neo-tree = true;
|
|
lazyterm = true;
|
|
};
|
|
};
|
|
blank.enable = false;
|
|
line_num = {
|
|
use_treesitter = true;
|
|
style = "#91bef0";
|
|
};
|
|
};
|
|
}
|