diff --git a/modules/home-manager/tmux/default.nix b/modules/home-manager/tmux/default.nix index 7dc4e0d..c6646d7 100644 --- a/modules/home-manager/tmux/default.nix +++ b/modules/home-manager/tmux/default.nix @@ -3,8 +3,19 @@ enable = true; plugins = with pkgs; [ { - plugin = tmuxPlugins.gruvbox; - extraConfig = "set -g @tmux-gruvbox 'dark'"; + plugin = tmuxPlugins.power-theme.overrideAttrs (_: { + src = fetchFromGitHub { + owner = "wfxr"; + repo = "tmux-power"; + rev = "2e362c50e5772ba1d13a00628baba558b4220f41"; + sha256 = "sha256-1hjQXC7261DiwrZ54PiwMLJM62srmP8koPNnTEp2zdI="; + }; + }); + extraConfig = " + set -g @tmux_power_theme '#83A3C2' + set -g @tmux_power_right_arrow_icon '' + set -g @tmux_power_left_arrow_icon '' + "; } ]; extraConfig = " @@ -17,9 +28,9 @@ bind r source-file ~/.config/tmux/tmux.conf # remap prefix from C-b to C-Space - unbind C-b - set -g prefix C-Space - bind C-Space send-prefix + # unbind C-b + # set -g prefix C-Space + # bind C-Space send-prefix # split panes using | and - unbind '\"'