热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

linux或mac上安装zsh以及自动提示/语法高亮等

linux或mac上安装zsh以及自动提示语法高亮等,Go语言社区,Golang程序员人脉社



2019独角兽企业重金招聘Python工程师标准>>> hot3.png



安装 zsh

mac 安装: brew install zsh
Ubuntu 安装: sudo apt-get install zsh
CentOS 安装: yum install zsh
其他的自行查找

下载 oh-my-zsh

git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh

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

创建 .zshrc 配置文件

cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc

更改默认 Shell

查询位置并设置:
which zsh
/usr/bin/zsh
chsh -s /usr/bin/zsh

下载相关插件 zsh-autosuggestions,zsh-syntax-highlighting,zsh-completions,zsh-history-substring-search

.zshrc 配置文件中找到plugins,加入插件及其他配置。插件直接下载后放置目录: ~/.oh-my-zsh/custom/plugins

cd ~/.oh-my-zsh/custom/plugins
github地址:
git clone https://github.com/zsh-users/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-completions
git clone https://github.com/zsh-users/zsh-history-substring-search
gitlab地址:
git clone https://gitee.com/who7708/zsh-syntax-highlighting
git clone https://gitee.com/who7708/zsh-autosuggestions
git clone https://gitee.com/who7708/zsh-completions
git clone https://gitee.com/who7708/zsh-history-substring-search

vim ~/.zshrc
// 添加或修改如下:
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
zsh-completions
zsh-history-substring-search
)
// ......
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias tailf='tail -20f'

插件github地址:


  • oh-my-zsh

  • zsh-syntax-highlighting

  • zsh-autosuggestions

  • hzsh-completions

  • zsh-history-substring-search

插件gitlab地址:


  • oh-my-zsh

  • zsh-syntax-highlighting

  • zsh-autosuggestions

  • hzsh-completions

  • zsh-history-substring-search

下载压缩包安装

直接下载提供的压缩包,解压到对应目录下即可。下载地址







转载于:https://my.oschina.net/who7708/blog/2961842



推荐阅读
author-avatar
曉--伍_621
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有