From 8b9179a682d4be0d1054df8aee31790d52001880 Mon Sep 17 00:00:00 2001 From: ahwx Date: Sat, 21 Feb 2026 23:21:28 +0100 Subject: [PATCH] chore: remove unused plugin --- modules/home/tmux.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/modules/home/tmux.nix b/modules/home/tmux.nix index b452b37..816ce11 100644 --- a/modules/home/tmux.nix +++ b/modules/home/tmux.nix @@ -1,4 +1,10 @@ -{ inputs, lib, config, pkgs, ... }: +{ + inputs, + lib, + config, + pkgs, + ... +}: { home.packages = with pkgs; [ tmux @@ -58,10 +64,9 @@ # Allow passthrough so that image.nvim works. set -gq allow-passthrough on - ''; + ''; plugins = with pkgs.tmuxPlugins; [ - yank - fzf-tmux-url + yank vim-tmux-navigator ]; };