From be2445b47329eb816882795830a63dae07c8ba88 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Mon, 22 Dec 2025 15:58:19 +0000 Subject: [PATCH] Removed unused plugins --- lua/config/keys.lua | 14 -------------- lua/plugins/ui.lua | 6 ------ 2 files changed, 20 deletions(-) diff --git a/lua/config/keys.lua b/lua/config/keys.lua index 51f8b1f..c0ce705 100644 --- a/lua/config/keys.lua +++ b/lua/config/keys.lua @@ -308,20 +308,6 @@ return { { "or", vim.cmd.OverseerRun, desc = "[O]verseer [R]un", mode = "n" }, { "ot", vim.cmd.OverseerToggle, desc = "[O]verseer [T]oggle", mode = "n" }, }, - precognition = { - { - "p", - function() - if require("precognition").toggle() then - vim.notify("Precognition ON") - else - vim.notify("Precognition OFF") - end - end, - desc = "[P]recognition", - mode = "n", - }, - }, ---@param telescope_builtin table telescope = function(telescope_builtin) return { diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua index 443a7c1..6cfb6b5 100644 --- a/lua/plugins/ui.lua +++ b/lua/plugins/ui.lua @@ -101,7 +101,6 @@ return { -- UI components and other visual elements are declared here }, }, extensions = { - "fugitive", "fzf", "lazy", "mason", @@ -122,11 +121,6 @@ return { -- UI components and other visual elements are declared here }, }, }, - -- Assistant for refreshers on vim motions - { - "tris203/precognition.nvim", - keys = require("config.keys").precognition, - }, { "HiPhish/rainbow-delimiters.nvim", lazy = true,