1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 12:19:26 +00:00

[neovim] Reorganize plugins

This commit is contained in:
2025-02-08 19:59:41 +01:00
parent 998d80ceb6
commit 2059c85c13
11 changed files with 66 additions and 49 deletions

View File

@ -0,0 +1,14 @@
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>/",
},
})