AutoYADM commit: 2024-11-15 13:45:02

This commit is contained in:
Daniel Fichtinger 2024-11-15 13:45:02 -05:00
parent 700e498a25
commit 5581dcdb3b
2 changed files with 15 additions and 13 deletions

View file

@ -122,16 +122,16 @@ keybinds clear-defaults=true {
shared_except "locked" {
bind "Alt -" { Resize "Increase"; }
bind "Alt esc" { Resize "Decrease"; }
bind "Alt l" { PreviousSwapLayout; }
bind "Alt u" { NextSwapLayout; }
bind "Alt h" { PreviousSwapLayout; }
bind "Alt ," { NextSwapLayout; }
bind "Alt f" { ToggleFocusFullscreen; }
bind "Alt w" { ToggleFloatingPanes; }
bind "Alt z" { TogglePaneFrames; }
bind "Ctrl g" { SwitchToMode "locked"; }
bind "Alt j" { GoToPreviousTab; }
bind "Alt y" { GoToNextTab; }
bind "Alt l" { GoToPreviousTab; }
bind "Alt u" { GoToNextTab; }
bind "Alt v" { NewPane "right"; }
bind "Alt h" { NewPane "down"; }
bind "Alt s" { NewPane "down"; }
bind "Alt x" { CloseFocus; }
bind "Ctrl q" { Quit; }
}

18
.zshrc
View file

@ -18,14 +18,16 @@ alias testvim='NVIM_APPNAME=nvim-test nvim'
alias lg=lazygit
alias ylg="yadm enter lazygit"
# tmux aliases
alias t="tmux"
alias ta="tmux attach-session"
alias tat="tmux attach-session -t"
alias tka="tmux kill-session -a"
alias tkt="tmux kill-session -t"
alias tl="tmux list-sessions"
alias tn="tmux new-session"
alias tnt="tmux new-session -t"
alias tm="tmux"
# alias ta="tmux attach-session"
# alias tat="tmux attach-session -t"
# alias tka="tmux kill-session -a"
# alias tkt="tmux kill-session -t"
# alias tl="tmux list-sessions"
# alias tn="tmux new-session"
# alias tnt="tmux new-session -t"
alias zj=zellij
alias svenv="source .venv/bin/activate"
alias szsh="source ~/.zshrc"