return { "LudoPinelli/comment-box.nvim", config = function() -- add custom commentstring to plugin source, since configuration is not yet supported local function insertlang(lang, commentstring) local filename = os.getenv("HOME") .. "/.local/share/nvim/lazy/comment-box.nvim/lua/comment-box/commentstrings.lua" local file = io.open(filename, "r") if not file then return end local content = file:read("a") if string.match(content, lang) then return end local lines = {} for line in content:gmatch("[^\r\n]+") do table.insert(lines, line) end file:close() table.insert(lines, 24, " " .. lang .. ' = { "' .. commentstring .. '", "" },') file = io.open(filename, "w") if not file then return end file:write(table.concat(lines, "\n")) file:close() end insertlang("hyprlang", "#%s") require("comment-box").setup({ comment_style = "line", doc_width = 70, box_width = 50, line_width = 70, }) local opts = { silent = true } opts.desc = "comment text box" vim.keymap.set({"n", "v"}, "cb", ":CBccbox", opts) opts.desc = "comment text line" vim.keymap.set({"n", "v"}, "cl", ":CBllline", opts) opts.desc = "comment line" vim.keymap.set({"n", "v"}, "ce", ":CBline", opts) opts.desc = "comment highlight" vim.keymap.set({"n", "v"}, "ch", ":CBlcbox18", opts) opts.desc = "delete comment box" vim.keymap.set({"n", "v"}, "cd", ":CBd", opts) opts.desc = "yank comment box contents" vim.keymap.set({"n", "v"}, "cy", ":CBy", opts) end, }