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<C-a>/g<C-x>, and the per-filetype augend groups

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 12:27:20 -04:00
co-authored by Claude Opus 5
parent e52b0061ea
commit b25b5a128d
4 changed files with 0 additions and 54 deletions
-35
View File
@@ -1,35 +0,0 @@
-- better increase/descrease
return {
"monaqa/dial.nvim",
keys = {
{
"<C-a>",
function()
return require("dial.map").inc_normal()
end,
expr = true,
desc = "Increment",
},
{
"<C-x>",
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,
}
-12
View File
@@ -1,12 +0,0 @@
return {
"nvim-mini/mini.indentscope",
enabled = true,
opts = {
draw = {
-- Speed up distracting animation
animation = function()
return 1
end,
},
},
}
-6
View File
@@ -1,6 +0,0 @@
return {
"yorickpeterse/nvim-pqf",
config = function()
require("pqf").setup()
end,
}