From 1dd2406de3631fa06bb5acb6909eefaef65eda15 Mon Sep 17 00:00:00 2001 From: pika Date: Fri, 13 Jun 2025 14:44:01 +0200 Subject: [PATCH] wip --- lua/pika/plugins/qol.lua | 17 ----------------- lua/pika/plugins/snacks.lua | 7 ++++--- 2 files changed, 4 insertions(+), 20 deletions(-) diff --git a/lua/pika/plugins/qol.lua b/lua/pika/plugins/qol.lua index 4af2800..f3ae165 100644 --- a/lua/pika/plugins/qol.lua +++ b/lua/pika/plugins/qol.lua @@ -244,23 +244,6 @@ return { opts = { headerMaxWidth = 80 }, cmd = "GrugFar", -- ────────────────────────────────────< keybindings >───────────────────────────────── - keys = { - { - "sr", - function() - local grug = require("grug-far") - local ext = vim.bo.buftype == "" and vim.fn.expand("%:e") - grug.grug_far({ - transient = true, - prefills = { - filesFilter = ext and ext ~= "" and "*." .. ext or nil, - }, - }) - end, - mode = { "n", "v" }, - desc = "Search and Replace", - }, - }, }, -- ╭──────────╮ -- │ snippets │ diff --git a/lua/pika/plugins/snacks.lua b/lua/pika/plugins/snacks.lua index a9f0e6b..afcf0d9 100644 --- a/lua/pika/plugins/snacks.lua +++ b/lua/pika/plugins/snacks.lua @@ -17,12 +17,13 @@ return { duration = 4, -- ms per step easing = "linear", - fps = 90, -- frames per second. Global setting for all animations + fps = 75, -- frames per second. Global setting for all animations }, notifier = { enabled = true }, indent = { enabled = true }, toggle = { enabled = true }, scroll = { enabled = true }, + ---@class snacks.dashboard.Config ---@field enabled? boolean ---@field sections snacks.dashboard.Section @@ -406,8 +407,8 @@ return { -- { "qs", function() require("persistence").load() end, desc = "Restore Session" }, -- { "ql", function() require("persistence").load({ last = true }) end, desc = "Restore Last Session" }, -- { "qd", function() require("persistence").stop() end, desc = "Don't Save Current Session" }, - { "db", ":Dashboard", desc = "Dashboard"}, - { "dq", function() require("inspire").show_quote() end, desc = "Show Inspire Quote"}, + { "db", ":Dashboard", desc = "Dashboard" }, + -- { "dq", function() require("inspire").show_quote() end, desc = "Show Inspire Quote"}, }, }, },