oh-my-zsh

CentOS安装oh-my-zsh并配置语法高亮和命令自动补全

左心房为你撑大大i 提交于 2020-10-02 21:10:22
安装zsh 和 oh-my-zsh 安装zsh yum install zsh 安装git yum install git 切换默认shell chsh -s /bin/zsh clone from GitHub git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh 复制默认.zshrc cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc 安装插件 语法高亮插件 安装 git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting 配置 在~/.zshrc的plugins中加入 zsh-syntax-highlighting 自动补全插件 安装 git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions 配置 在~/.zshrc的plugins中加入 zsh-autosuggestions 来源: oschina

Ubuntu安装zsh

筅森魡賤 提交于 2020-08-16 00:26:46
一、安装zsh sudo apt install zsh 二、安装oh-my-zsh sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 切换系统默认shell chsh -s zsh 重启或者注销生效 三、安装插件 autojump:目录间自动跳转 sudo apt install python git clone git://github.com/joelthelion/autojump.git cd autojump ./install.py 配置~/.zshrc,修改plugins plugins=(现有插件 autojump) 且增加一行 [[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile.d/autojump.sh 生效 source ~/.zshrc 使用:终端cd过的目录,命令是j,加上部分目录名即可 j 部分目录名 extract:解压神器,tar,gz,7z,zip,bz等等压缩文件 配置~/.zshrc,修改plugins plugins=(现有插件 extract) 生效 source ~/.zshrc 使用: extract

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 文件中添加