···77# List of plugins
88set -g @plugin 'tmux-plugins/tpm'
99set -g @plugin 'tmux-plugins/tmux-sensible'
1010-"set -g @plugin 'odedlaz/tmux-onedark-theme'
1010+# set -g @plugin 'odedlaz/tmux-onedark-theme'
1111set -g @plugin 'egel/tmux-gruvbox'
1212set -g @plugin 'tmux-plugins/tmux-continuum'
1313set -g @plugin 'tmux-plugins/tmux-resurrect'
···2626set-option -g prefix C-t
2727set-option -g repeat-time 0
28282929-3029set-window-option -g mode-keys vi
313032313333-#vim-like pane switching
3232+#vim-like pane switching
3433bind -r k select-pane -U
3534bind -r j select-pane -D
3635bind -r h select-pane -L
···3837393840394141-# Maps <Ctrl>-h to select pane on the left. Vim-like navigation (does not work..
4242-bind -n C-k select-pane -U
4343-bind -n C-j select-pane -D
4444-bind -n C-h select-pane -L
4545-bind -n C-l select-pane -R
4040+# Maps <Ctrl>-h to select pane on the left. Vim-like navigation - conflicts a lot with other cmd
4141+#bind -n C-k select-pane -U
4242+#bind -n C-j select-pane -D
4343+#bind -n C-h select-pane -L
4444+#bind -n C-l select-pane -R
46454746#shift + control switch windows
4847#bind-key -n C-S-Left swap-window -t -1
+5-1
zsh/aliases.shrc
···7788# that pip install strawberry-graphql[debug-server] will not fail (square brackets are used for globbing: https://stackoverflow.com/a/30539963/5246670)
99alias pip='noglob pip'
1010+1111+# tmux
1012alias ide=~/.tmux/ide
1113alias tmux-session=~/.tmux/tmux-session
1414+alias killtmuxsessions="tmux ls -F'#{session_name}'|egrep '^[0-9]+$'|xargs -I% tmux kill-session -t \"=%\""
1515+alias ta=tmux attach
1616+1217# when closing ranger it will be at the path you were
1318alias ranger='ranger --choosedir=$HOME/.rangerdir; LASTDIR=`cat $HOME/.rangerdir`; cd "$LASTDIR"'
1419···4146alias dkcpstop="docker-compose stop"
424743484444-alias killtmuxsessions="tmux ls -F'#{session_name}'|egrep '^[0-9]+$'|xargs -I% tmux kill-session -t \"=%\""