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, -}