a bit sloppy but working
This commit is contained in:
23
lua/config/comment-box.lua
Normal file
23
lua/config/comment-box.lua
Normal 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
|
||||
})
|
Reference in New Issue
Block a user