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:
@@ -35,7 +35,6 @@
|
|||||||
"lazyvim.plugins.extras.lang.zig",
|
"lazyvim.plugins.extras.lang.zig",
|
||||||
"lazyvim.plugins.extras.lsp.neoconf",
|
"lazyvim.plugins.extras.lsp.neoconf",
|
||||||
"lazyvim.plugins.extras.test.core",
|
"lazyvim.plugins.extras.test.core",
|
||||||
"lazyvim.plugins.extras.ui.mini-indentscope",
|
|
||||||
"lazyvim.plugins.extras.ui.treesitter-context",
|
"lazyvim.plugins.extras.ui.treesitter-context",
|
||||||
"lazyvim.plugins.extras.util.dot",
|
"lazyvim.plugins.extras.util.dot",
|
||||||
"lazyvim.plugins.extras.util.gh",
|
"lazyvim.plugins.extras.util.gh",
|
||||||
|
|||||||
@@ -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,
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
return {
|
|
||||||
"nvim-mini/mini.indentscope",
|
|
||||||
enabled = true,
|
|
||||||
opts = {
|
|
||||||
draw = {
|
|
||||||
-- Speed up distracting animation
|
|
||||||
animation = function()
|
|
||||||
return 1
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
return {
|
|
||||||
"yorickpeterse/nvim-pqf",
|
|
||||||
config = function()
|
|
||||||
require("pqf").setup()
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user