2 files changed,
1 insertions(+),
16 deletions(-)
jump to
| M | lazy-lock.json |
| M | lua/plugins/meta.lua |
M
lazy-lock.json
@@ -18,7 +18,6 @@ "nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, "nvim-treesitter-context": { "branch": "master", "commit": "ed1cf48d5af252248c55f50b9427e8ce883a2c6b" }, "nvim-treesitter-endwise": { "branch": "master", "commit": "a61a9de7965324d4019fb1637b66bfacdcb01f51" }, - "nvim-ts-context-commentstring": { "branch": "main", "commit": "1b212c2eee76d787bbea6aa5e92a2b534e7b4f8f" }, "oil.nvim": { "branch": "master", "commit": "975a77cce3c8cb742bc1b3629f4328f5ca977dad" }, "schemastore.nvim": { "branch": "main", "commit": "e906ac3ed0bd273781759e7635b5b824393c925c" }, "render-markdown.nvim": { "branch": "main", "commit": "3da7bb459f6cff03980dd1e106c46f3e62ff4d9f" },
M
lua/plugins/meta.lua
@@ -3,12 +3,6 @@ return {
{ "echasnovski/mini.nvim", event = "VeryLazy", - dependencies = { - { - "JoosepAlviste/nvim-ts-context-commentstring", - opts = { enable_autocmd = false }, - }, - }, keys = { { "<leader>c",@@ -16,9 +10,6 @@ function()
require("mini.bufremove").delete() end, }, - { "gS", mode = { "n", "v" } }, - { "a", mode = { "o", "x" } }, - { "i", mode = { "o", "x" } }, }, config = function() require("mini.bufremove").setup { silent = true }@@ -28,12 +19,7 @@ require("mini.ai").setup {}
require("mini.icons").setup {} require("mini.test").setup {} require("mini.hipatterns").setup {} - require("mini.comment").setup { - custom_commentstring = function() - return require("ts_context_commentstring.internal").calculate_commentstring() - or vim.bo.commentstring - end, - } + require("mini.comment").setup {} end, },