Oh my posh
Oh My Posh is a prompt theme engine for any shell, including Zsh. It allows you to customize your terminal prompt with themes and segments.
autosuggestions
Zsh autosuggestions provide command suggestions based on your history and current input, enhancing your command line experience.
Aliases
Create a file ~/.bash_aliases
and add your aliases there, or directly in .zshrc
.
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
alias zshconfig='nano ~/.zshrc'
alias ls='eza -la --group-directories-first --icons'
Minor packages
fzf
Fuzzy finder for command line, useful for searching files, history, etc.
eza
Better alternative to ls
with icons and better defaults.
thefuck
A tool to correct mistyped commands in the terminal.
tmux
A terminal multiplexer that allows you to manage multiple terminal sessions from a single window.
fastfetch
A tool to display system information in the terminal, similar to neofetch but faster.