| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | local M = {}function M.config()  local pre_hook = nil  if lvim.builtin.treesitter.context_commentstring.enable then    pre_hook = function(_ctx)      return require("ts_context_commentstring.internal").calculate_commentstring()    end  end  lvim.builtin.comment = {    active = true,    on_config_done = nil,    ---Add a space b/w comment and the line    ---@type boolean    padding = true,    ---Lines to be ignored while comment/uncomment.    ---Could be a regex string or a function that returns a regex string.    ---Example: Use '^$' to ignore empty lines    ---@type string|function    ignore = "^$",    ---Whether to create basic (operator-pending) and extra mappings for NORMAL/VISUAL mode    ---@type table    mappings = {      ---operator-pending mapping      ---Includes `gcc`, `gcb`, `gc[count]{motion}` and `gb[count]{motion}`      basic = true,      ---extended mapping      ---Includes `g>`, `g<`, `g>[count]{motion}` and `g<[count]{motion}`      extra = false,    },    ---LHS of line and block comment toggle mapping in NORMAL/VISUAL mode    ---@type table    toggler = {      ---line-comment toggle      line = "gcc",      ---block-comment toggle      block = "gbc",    },    ---LHS of line and block comment operator-mode mapping in NORMAL/VISUAL mode    ---@type table    opleader = {      ---line-comment opfunc mapping      line = "gc",      ---block-comment opfunc mapping      block = "gb",    },    ---Pre-hook, called before commenting the line    ---@type function|nil    pre_hook = pre_hook,    ---Post-hook, called after commenting is done    ---@type function|nil    post_hook = nil,  }endfunction M.setup()  local nvim_comment = require "Comment"  nvim_comment.setup(lvim.builtin.comment)  if lvim.builtin.comment.on_config_done then    lvim.builtin.comment.on_config_done(nvim_comment)  endendreturn M
 |