[nvim] Switches to fzf for the buffer finder, removes snacks config

This commit is contained in:
2025-03-18 12:00:14 -07:00
parent 65978dcc23
commit ece6af8e67
3 changed files with 13 additions and 15 deletions

View File

@@ -289,8 +289,8 @@
"$mainMod + SHIFT, S, exec, hyprshot -m region --clipboard-only"
"$mainMod, C, exec, swaync-client -t"
"$mainMod + L_CONTROL, Q, exec, /home/drew/.config/rofi/powermenu/type-2/powermenu.sh"
"$mainMod, X, exec, /home/drew/.config/rofi/powermenu/type-2/powermenu.sh"
"$mainMod + L_CONTROL, Q, exec, /home/drew/.config/rofi/powermenu/powermenu.sh"
"$mainMod, X, exec, /home/drew/.config/rofi/powermenu/powermenu.sh"
# "$mainMod, X, exec, hyprlock"
# "$mainMod + SHIFT, X, exec, systemctl suspend"

View File

@@ -0,0 +1,11 @@
return {
-- https://www.lazyvim.org/extras/editor/fzf
"ibhagwan/fzf-lua",
keys = {
{
"<leader><space>",
"<cmd>FzfLua buffers sort_mru=true sort_lastused=true<cr>",
desc = "Switch Buffer",
},
},
}

View File

@@ -1,13 +0,0 @@
return {
"folke/snacks.nvim",
keys = {
{
"<leader><space>",
function()
Snacks.picker.buffers()
end,
desc = "Buffers",
},
{ "<leader><comma>", false },
},
}