From b25b5a128d933517486a3eb88fef18e560760b07 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Fri, 31 Jul 2026 12:24:47 -0400 Subject: [PATCH] Remove plugins superseded by LazyVim defaults - mini.indentscope: snacks.indent has scope enabled by default, and the extra existed only to disable it in favour of an animation set to 1ms - nvim-pqf: eagerly loaded and cosmetic; nvim-bqf covers quickfix on ft=qf - dial.lua: the override replaced the extra's keys and opts, dropping visual mode, g/g, and the per-filetype augend groups Co-Authored-By: Claude Opus 5 --- lazyvim.json | 1 - lua/plugins/dial.lua | 35 -------------------------------- lua/plugins/mini-indentscope.lua | 12 ----------- lua/plugins/pqf.lua | 6 ------ 4 files changed, 54 deletions(-) delete mode 100644 lua/plugins/dial.lua delete mode 100644 lua/plugins/mini-indentscope.lua delete mode 100644 lua/plugins/pqf.lua diff --git a/lazyvim.json b/lazyvim.json index dfd6fee..4d0cbd9 100644 --- a/lazyvim.json +++ b/lazyvim.json @@ -35,7 +35,6 @@ "lazyvim.plugins.extras.lang.zig", "lazyvim.plugins.extras.lsp.neoconf", "lazyvim.plugins.extras.test.core", - "lazyvim.plugins.extras.ui.mini-indentscope", "lazyvim.plugins.extras.ui.treesitter-context", "lazyvim.plugins.extras.util.dot", "lazyvim.plugins.extras.util.gh", diff --git a/lua/plugins/dial.lua b/lua/plugins/dial.lua deleted file mode 100644 index ac30388..0000000 --- a/lua/plugins/dial.lua +++ /dev/null @@ -1,35 +0,0 @@ --- better increase/descrease -return { - "monaqa/dial.nvim", - keys = { - { - "", - function() - return require("dial.map").inc_normal() - end, - expr = true, - desc = "Increment", - }, - { - "", - function() - return require("dial.map").dec_normal() - end, - expr = true, - desc = "Decrement", - }, - }, - config = function() - local augend = require("dial.augend") - require("dial.config").augends:register_group({ - default = { - augend.integer.alias.decimal, - augend.integer.alias.hex, - augend.date.alias["%Y/%m/%d"], - augend.constant.alias.bool, - augend.semver.alias.semver, - augend.constant.new({ elements = { "let", "const" } }), - }, - }) - end, -} diff --git a/lua/plugins/mini-indentscope.lua b/lua/plugins/mini-indentscope.lua deleted file mode 100644 index 76d99cf..0000000 --- a/lua/plugins/mini-indentscope.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - "nvim-mini/mini.indentscope", - enabled = true, - opts = { - draw = { - -- Speed up distracting animation - animation = function() - return 1 - end, - }, - }, -} diff --git a/lua/plugins/pqf.lua b/lua/plugins/pqf.lua deleted file mode 100644 index 74da333..0000000 --- a/lua/plugins/pqf.lua +++ /dev/null @@ -1,6 +0,0 @@ -return { - "yorickpeterse/nvim-pqf", - config = function() - require("pqf").setup() - end, -}