when entering tmux, my default shell becomes Oh My Zsh which is fine.
However as a result before every command for tmux I have to type "tmux" but every single tutorial i am viewing doesn't have that?
for my conf file I also need the "tmux" before any of it runs, previously it doesn't run when i start a new tmux session.
# unbind default prefix and set it to ctrl-a
tmux unbind C-b
tmux set -g prefix C-a
tmux bind C-a send-prefix
# make delay shorter
tmux set -sg escape-time 0
#### key bindings ####
#split panes using | and -
tmux bind | tmux split-window -h
tmux bind - tmux split-window -v
tmux unbind '"'
tmux unbind %
Thanks in advance!