ubuntu 安装 oh my zsh

坚强是说给别人听的谎言 提交于 2020-08-12 16:56:16

 

https://github.com/ohmyzsh/ohmyzsh

https://ohmyz.sh/#install

安装

brew install zsh


sudo apt-get install zsh -y

sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

 

mac 上的权限问题, 必须在 source oh-my-zsh之前

ZSH_DISABLE_COMPFIX="true"

 

默认shell

chsh -s /bin/zsh

 

 

 

https://github.com/ohmyzsh/ohmyzsh/wiki/themes

主题   avit

  

去掉那个红色的箭头或者改成其他颜色... 

添加箭头

 

 

fishy 这个主题没有git ... 

配置

时间格式

HIST_STAMPS="yyyy-mm-dd"

 

 

https://github.com/unixorn/awesome-zsh-plugins

 

插件 安装 clone库,并安装, 然后在  ~/.zshrc  文件中添加

 

命令高亮

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

 

类似fish的自动补全

git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
plugins=(
    git
    zsh-syntax-highlighting
    zsh-autosuggestions
    z
    )

 

 

使用vs打开文件

git clone https://github.com/valentinocossar/vscode.git $ZSH_CUSTOM/plugins/vscode
plugins=(vscode)

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!