- Integrations with gitmux for git status
Installation with tpm
Add the following line to your .tmux.conf
.
set -g @plugin 'percygt/tmuxst'
Installation via nix overlay
Add tmuxst as a flake input:
{
inputs = {
tmuxst.url = "github:percygt/tmuxst";
};
outputs = { tmuxst, ... }: { };
}
Then, use the flake's overlay
attribute:
{
outputs = { tmuxst, nixpkgs, ... }:
let
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [ tmuxst.overlays.default ];
};
in
# You can now reference pkgs.tmuxPlugins.tmuxst.
{ }
}
After that, tmuxst
can now be used as a normal tmux plugin within the
nixpkgs
.
Variable | Default value | Description |
---|---|---|
@color1 |
"#96c7f1" |
WHITE |
@color2 |
"#aaa8af" |
GREY |
@color3 |
"#000000" |
BLACK |
@color4 |
"#120d22" |
NOCTURNE |
@color5 |
"#0e1a60" |
AZURE |
@color6 |
"#b4befe" |
LAVENDER |
@color7 |
"#fab387" |
PEACH |
MIT