From 600c3c81a2a66b058ca9e1f3f24f08d6b8965add Mon Sep 17 00:00:00 2001 From: pika Date: Tue, 25 Jun 2024 11:29:28 +0200 Subject: [PATCH] addet comment-boxes to seperate file + fixed == Comment --- lua/pika/plugins/comment-box.lua | 10 ++++++++++ lua/pika/plugins/comment.lua | 8 -------- 2 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 lua/pika/plugins/comment-box.lua diff --git a/lua/pika/plugins/comment-box.lua b/lua/pika/plugins/comment-box.lua new file mode 100644 index 0000000..99929f3 --- /dev/null +++ b/lua/pika/plugins/comment-box.lua @@ -0,0 +1,10 @@ +return { + "LudoPinelli/comment-box.nvim", + lazy = false, + opts = { + comment_style = "line", + doc_width = 90, -- width of the document + box_width = 75, -- width of the boxes + line_width = 120, -- width of the lines + }, +} diff --git a/lua/pika/plugins/comment.lua b/lua/pika/plugins/comment.lua index 5dd13b1..a0f254e 100644 --- a/lua/pika/plugins/comment.lua +++ b/lua/pika/plugins/comment.lua @@ -1,12 +1,4 @@ return { - "LudoPinelli/comment-box.nvim", - lazy = false, - opts = { - comment_style = "line", - doc_width = 90, -- width of the document - box_width = 75, -- width of the boxes - line_width = 120, -- width of the lines - }, "numToStr/Comment.nvim", event = { "BufReadPre", "BufNewFile" }, dependencies = {