···3535bind -r h select-pane -L
3636bind -r l select-pane -R
37373838+# Resize the current pane using Alt + direction
3939+#bind -r M-k resize-pane -U 5
4040+#bind -r M-j resize-pane -D 5
4141+#bind -r M-h resize-pane -L 5
4242+#bind -r M-l resize-pane -R 5
38434444+# Enable mouse mode (tmux 2.1 and above) such as select window
4545+set -g mouse on
39464047# Maps <Ctrl>-h to select pane on the left. Vim-like navigation - conflicts a lot with other cmd
4148#bind -n C-k select-pane -U
+6
zsh/aliases.shrc
···55export EDITOR="nvim"
66alias vim=nvim
7788+# show hidden files by default
99+alias ll='ls -la'
1010+811# that pip install strawberry-graphql[debug-server] will not fail (square brackets are used for globbing: https://stackoverflow.com/a/30539963/5246670)
912alias pip='noglob pip'
1013···3437alias gpu='git pull'
3538alias gf='git fetch'
3639alias gcl='git clone'
4040+4141+alias lg=lazygit
4242+37433844#docker
3945alias dkps="docker ps"
+2-2
zsh/configs.shrc
···44[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"
5566#This will create separate history files in your home directory
77-MYTTY=`tty`
88-HISTFILE=$HOME/.bash_history_`basename $MYTTY`
77+#MYTTY=`tty`
88+#HISTFILE=$HOME/.bash_history_`basename $MYTTY`
991010# #allow e.g. "pip install -e .[full]" to work -> zsh uses square brackets for globbing / pattern matching.
1111# #alias pip='noglob pip'
+1
zsh/paths.shrc
···3535# export JAVA_LIBRARY_PATH=$JAVA_LIBRARY_PATH:${HADOOP_HOME}/lib/native
3636# alias hstart="/usr/local/Cellar/hadoop/3.2.1/sbin/start-all.sh"
3737# alias hstop="/usr/local/Cellar/hadoop/3.2.1/sbin/stop-all.sh"
3838+