mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 13:06:35 +05:30
add power theme and remove leader custom binding
This commit is contained in:
@ -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 '\"'
|
||||
|
Reference in New Issue
Block a user