mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/comment-box-nvim: init
This commit is contained in:
parent
45bb6636e5
commit
aa1f5a74ff
4 changed files with 186 additions and 0 deletions
40
tests/test-sources/plugins/utils/comment-box.nix
Normal file
40
tests/test-sources/plugins/utils/comment-box.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
_: {
|
||||
empty = {
|
||||
plugins.comment-box.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.comment-box = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
comment_style = "line";
|
||||
doc_width = 80;
|
||||
box_width = 60;
|
||||
borders = {
|
||||
top = "─";
|
||||
bottom = "─";
|
||||
left = "│";
|
||||
right = "│";
|
||||
top_left = "╭";
|
||||
top_right = "╮";
|
||||
bottom_left = "╰";
|
||||
bottom_right = "╯";
|
||||
};
|
||||
line_width = 70;
|
||||
lines = {
|
||||
line = "─";
|
||||
line_start = "─";
|
||||
line_end = "─";
|
||||
title_left = "─";
|
||||
title_right = "─";
|
||||
};
|
||||
outer_blank_lines_above = false;
|
||||
outer_blank_lines_below = false;
|
||||
inner_blank_lines = false;
|
||||
line_blank_line_above = false;
|
||||
line_blank_line_below = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue