a bit sloppy but working

This commit is contained in:
2022-06-17 21:39:40 -04:00
parent 07d85081aa
commit 142017e051
45 changed files with 3521 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
require("comment-box").setup({
box_width = 70, -- width of the boxex
borders = { -- symbols used to draw a box
top = "",
bottom = "",
left = "",
right = "",
top_left = "",
top_right = "",
bottom_left = "",
bottom_right = ""
},
line_width = 70, -- width of the lines
line = { -- symbols used to draw a line
line = "",
line_start = "",
line_end = ""
},
outer_blank_lines = false, -- insert a blank line above and below the box
inner_blank_lines = false, -- insert a blank line above and below the text
line_blank_line_above = false, -- insert a blank line above the line
line_blank_line_below = false -- insert a blank line below the line
})