This website collects cookies to deliver better user experience
sudo add-apt-repository universe sudo apt update sudo apt install zsh zsh-syntax-highlighting zsh-autosuggestions zsh
cp ~/.zshrc ~/.zshrcbackup echo "source $(dpkg -L zsh-autosuggestions | grep 'zsh$')" | tee -a ~/.zshrc echo "source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" | tee -a ~/.zshrc
zsh
zsh source ~/.zshrc
chsh -s $(which zsh)
xed
nano
vim
code
xed ~/.zshrc
~/.zshrc
HISTFILE="$HOME/.zsh_history" HISTSIZE=500000 SAVEHIST=500000 setopt appendhistory setopt INC_APPEND_HISTORY setopt SHARE_HISTORY
source ~/.zshrc
~/.zsh_history
36
0