Compare commits

..

3 commits

2 changed files with 9 additions and 2 deletions

View file

@ -19,7 +19,14 @@
}; };
neovim.enable = true; neovim.enable = true;
starship.enable = true; starship.enable = true;
tmux.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'
'';
};
utils.enable = true; utils.enable = true;
vifm.enable = true; vifm.enable = true;
zellij.enable = true; zellij.enable = true;

View file

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