1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-02-22 15:37:59 +00:00
dotfiles/.config/nvim/lua/plugins/mini-comment.lua

15 lines
334 B
Lua
Raw Permalink Normal View History

2025-02-08 19:59:41 +01:00
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>/",
},
})