Compare commits

..

1 commit

Author SHA1 Message Date
ec682c6fe8 feat(tmux): improve session creation script
Add a simpre README to document it
2025-05-11 23:43:49 +02:00
2 changed files with 2 additions and 9 deletions

View file

@ -19,14 +19,7 @@
};
neovim.enable = true;
starship.enable = true;
tmux = {
enable = true;
extraConfig = ''
bind -n M-F9 run 'create-tmux-session -n quipu -r quipuapp "run:nvim ." repo:quipu-infrastructure neww:quipu-infra p:sellsy hsplit:50 run:k9s repo:charts neww:charts'
bind -n M-F8 run 'create-tmux-session -n verifactu -r verifactu "run:nvim ." repo:verifactu-infrastructure neww:verifactu-infra repo:sellsy hsplit:50 run:k9s repo:charts neww:charts'
'';
};
tmux.enable = true;
utils.enable = true;
vifm.enable = true;
zellij.enable = true;

View file

@ -122,7 +122,7 @@ is_running_in_tmux() {
check_available_commands() {
# Check commands dependencies
for c in fzf ghq; do
for c in fzf ghq terraform; do
check_command "$c"
done
}