Linux 安装 oh my zsh,并开启常见插件?

安装 zsh

下载

查看所有的 shell

cat /etc/shells

安装 zsh

sudo apt install zsh

把 zsh 设为默认的 shell

chsh -s /bin/zsh

安装 oh my zsh

差劲的方式

使用 gitee 下载 oh my zsh

git clone https://gitee.com/mirrors/oh-my-zsh.git

安装 oh my zsh

bash oh-my-zsh/tools/install.sh

最好的方式

sh -c "$(wget https://gitee.com/Devkings/oh_my_zsh_install/raw/master/install.sh -O -)"

安装插件

zsh-autosuggestions

git clone https://gitee.com/githubClone/zsh-autosuggestions  ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

常用

alias ll='ls -alF'


plugins=(
git
zsh-autosuggestions
)

你可能感兴趣的:(linuxshell)