Compare commits

...

2 Commits

Author SHA1 Message Date
David JULIEN 9aed284dbe [nvim] feat: add mini.pairs 2023-02-08 22:54:00 +01:00
David JULIEN 3892bc9389 [nvim] cleanup: rename comment.lua to editor.lua
the file will host plugins relative to the editor itself, not only
comments
2023-02-08 22:53:04 +01:00
2 changed files with 28 additions and 21 deletions

View File

@ -1,21 +0,0 @@
-- Author : swytch
-- Created : Sunday Jan. 29, 2023 00:20:31 CET
-- License : GPLv3
-- Description : Mini.comment plugin config file
return {
"echasnovski/mini.comment",
version = "*",
opts = {
mappings = {
comment = "<leader>c",
comment_line = "<leader><Space>",
text_object = "gc",
},
},
config = function(_, opts)
require("mini.comment").setup(opts)
end,
}

View File

@ -0,0 +1,28 @@
-- Author : swytch
-- Created : Sunday Jan. 29, 2023 00:20:31 CET
-- License : GPLv3
-- Description : Mini.comment plugin config file
return {
{
"echasnovski/mini.comment",
version = "*",
opts = {
mappings = {
comment = "<leader>c",
comment_line = "<leader><Space>",
text_object = "gc",
},
},
config = function(_, opts)
require("mini.comment").setup(opts)
end
},
{
"echasnovski/mini.pairs",
version = "*",
config = function() require("mini.pairs").setup() end,
}
}