mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/hlchunk: init
This commit is contained in:
parent
a183298bf6
commit
af76696a92
2 changed files with 115 additions and 0 deletions
42
plugins/by-name/hlchunk/default.nix
Normal file
42
plugins/by-name/hlchunk/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue