diff --git a/home-manager/features/hyprland.nix b/home-manager/features/hyprland.nix index 17ad470..9ca3f0b 100644 --- a/home-manager/features/hyprland.nix +++ b/home-manager/features/hyprland.nix @@ -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" diff --git a/home-manager/features/neovim/config/lua/plugins/fzf.lua b/home-manager/features/neovim/config/lua/plugins/fzf.lua new file mode 100644 index 0000000..01eaa06 --- /dev/null +++ b/home-manager/features/neovim/config/lua/plugins/fzf.lua @@ -0,0 +1,11 @@ +return { + -- https://www.lazyvim.org/extras/editor/fzf + "ibhagwan/fzf-lua", + keys = { + { + "", + "FzfLua buffers sort_mru=true sort_lastused=true", + desc = "Switch Buffer", + }, + }, +} diff --git a/home-manager/features/neovim/config/lua/plugins/snacks.lua b/home-manager/features/neovim/config/lua/plugins/snacks.lua deleted file mode 100644 index 73b1019..0000000 --- a/home-manager/features/neovim/config/lua/plugins/snacks.lua +++ /dev/null @@ -1,13 +0,0 @@ -return { - "folke/snacks.nvim", - keys = { - { - "", - function() - Snacks.picker.buffers() - end, - desc = "Buffers", - }, - { "", false }, - }, -}