sudo apt install zsh
https://github.com/ohmyzsh/ohmyzsh
Procura diretorio
https://github.com/junegunn/fzf
Sugere ao digitar
https://github.com/zsh-users/zsh-autosuggestions
Mudar a cor para melhor a leitura
https://github.com/zsh-users/zsh-syntax-highlighting
Pula para um diretorio
https://github.com/agkozak/zsh-z
Lista as portas usadas
https://github.com/caarlos0-graveyard/ports
https://github.com/unixorn/awesome-zsh-plugins
https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins
plugins=(git rails git-flow)
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
powerlevel10k/powerlevel10k
https://getantibody.github.io/
HISTSIZE=100000
SAVEHIST=100000
HISTFILE=~/.zsh_history
setopt INC_APPEND_HISTORY
setopt EXTENDED_HISTORY
setopt HIST_IGNORE_ALL_DUPS
export HISTTIMEFORMAT="[%F %T] "
https://github.com/tmux/tmux
https://gist.github.com/MohamedAlaa/2961058
##############################
# Configuration
##############################
# set Zsh as your default Tmux shell
set-option -g default-shell /bin/zsh
# act like GNU screen
unbind C-b
set-option -g prefix C-t
bind-key C-t send-prefix
# Getting interesting now, we use the vertical and horizontal
# symbols to split the screen
bind - split-window -h
bind = split-window -v