diff options
author | Minijackson <minijackson@riseup.net> | 2023-02-05 17:34:11 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-02-05 17:34:11 +0100 |
commit | 985588f02c735ba545bbbf32e8d1490d27bb4ef5 (patch) | |
tree | 43fc0024cf50553d101242e59c7761ff784f6e7e /common | |
parent | 19bbf44c673104a7fa5a8d912254e7dd7c993914 (diff) | |
download | nixos-config-reborn-985588f02c735ba545bbbf32e8d1490d27bb4ef5.tar.gz nixos-config-reborn-985588f02c735ba545bbbf32e8d1490d27bb4ef5.zip |
tmux: use tmux-thumbs instead of copycat
Diffstat (limited to 'common')
-rw-r--r-- | common/commandline/tmux.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/commandline/tmux.nix b/common/commandline/tmux.nix index b355662..72c918c 100644 --- a/common/commandline/tmux.nix +++ b/common/commandline/tmux.nix | |||
@@ -21,7 +21,7 @@ in { | |||
21 | terminal = "tmux-256color"; | 21 | terminal = "tmux-256color"; |
22 | historyLimit = 50000; | 22 | historyLimit = 50000; |
23 | 23 | ||
24 | plugins = with pkgs.tmuxPlugins; [copycat sensible urlview]; | 24 | plugins = with pkgs.tmuxPlugins; [tmux-thumbs sensible urlview]; |
25 | 25 | ||
26 | extraConfig = with config.theme; '' | 26 | extraConfig = with config.theme; '' |
27 | bind-key R run-shell ' \ | 27 | bind-key R run-shell ' \ |
@@ -38,6 +38,9 @@ in { | |||
38 | # Add plugin here because it needs its configuration | 38 | # Add plugin here because it needs its configuration |
39 | run-shell '${pkgs.tmuxPlugins.prefix-highlight}/share/tmux-plugins/prefix-highlight/prefix_highlight.tmux' | 39 | run-shell '${pkgs.tmuxPlugins.prefix-highlight}/share/tmux-plugins/prefix-highlight/prefix_highlight.tmux' |
40 | 40 | ||
41 | # Tmux Thumbs | ||
42 | set -g @thumbs-alphabet dvorak | ||
43 | |||
41 | # Be faster switching windows | 44 | # Be faster switching windows |
42 | bind C-n next-window | 45 | bind C-n next-window |
43 | bind C-p previous-window | 46 | bind C-p previous-window |