-1
lazy-lock.json
-1
lazy-lock.json
···
18
18
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
19
19
"nvim-treesitter-context": { "branch": "master", "commit": "ed1cf48d5af252248c55f50b9427e8ce883a2c6b" },
20
20
"nvim-treesitter-endwise": { "branch": "master", "commit": "a61a9de7965324d4019fb1637b66bfacdcb01f51" },
21
-
"nvim-ts-context-commentstring": { "branch": "main", "commit": "1b212c2eee76d787bbea6aa5e92a2b534e7b4f8f" },
22
21
"oil.nvim": { "branch": "master", "commit": "975a77cce3c8cb742bc1b3629f4328f5ca977dad" },
23
22
"schemastore.nvim": { "branch": "main", "commit": "e906ac3ed0bd273781759e7635b5b824393c925c" },
24
23
"render-markdown.nvim": { "branch": "main", "commit": "3da7bb459f6cff03980dd1e106c46f3e62ff4d9f" },
+1
-15
lua/plugins/meta.lua
+1
-15
lua/plugins/meta.lua
···
3
3
{
4
4
"echasnovski/mini.nvim",
5
5
event = "VeryLazy",
6
-
dependencies = {
7
-
{
8
-
"JoosepAlviste/nvim-ts-context-commentstring",
9
-
opts = { enable_autocmd = false },
10
-
},
11
-
},
12
6
keys = {
13
7
{
14
8
"<leader>c",
···
16
10
require("mini.bufremove").delete()
17
11
end,
18
12
},
19
-
{ "gS", mode = { "n", "v" } },
20
-
{ "a", mode = { "o", "x" } },
21
-
{ "i", mode = { "o", "x" } },
22
13
},
23
14
config = function()
24
15
require("mini.bufremove").setup { silent = true }
···
28
19
require("mini.icons").setup {}
29
20
require("mini.test").setup {}
30
21
require("mini.hipatterns").setup {}
31
-
require("mini.comment").setup {
32
-
custom_commentstring = function()
33
-
return require("ts_context_commentstring.internal").calculate_commentstring()
34
-
or vim.bo.commentstring
35
-
end,
36
-
}
22
+
require("mini.comment").setup {}
37
23
end,
38
24
},
39
25