mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-02-22 08:38:00 +00:00
15 lines
334 B
Lua
15 lines
334 B
Lua
require("mini.comment").setup({
|
|
options = {
|
|
custom_commentstring = function()
|
|
return require("ts_context_commentstring.internal").calculate_commentstring() or vim.bo.commentstring
|
|
end,
|
|
},
|
|
|
|
mappings = {
|
|
comment = "<leader>/",
|
|
comment_line = "<leader>/",
|
|
comment_visual = "<leader>/",
|
|
textobject = "<leader>/",
|
|
},
|
|
})
|