chsh-s/usr/local/bin/zsh 注:要确保更改的shell在上面cat命令查看的文件里,不然会报错。 3.安装oh-my-zsh 代码语言:javascript 复制 git clone git://github.com/robbyrussell/oh-my-zsh.git~/.oh-my-zsh 4.创建配置文件 代码语言:javascript 复制 cp~/.oh-my-zsh/templates/zshrc.zsh-template~/.zshrc...
1. 这是oh my zsh的github地址:https://github.com/robbyrussell/oh-my-zsh,大家有兴趣可以进去看看。 2.在终端里输入如下命令: curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh 输入完之后回车开始安装,安装期间需要输入电脑的密码,注意在命令行里输入密码是不显示的,...
2 设置zsh为默认shell 三 配置zsh 1 安装 2 主题 3 推荐插件 命名高亮:zsh-syntax-highlighting 命令补全:zsh-autosuggestions git操作加速:git 目录跳转:autojump 文件解压:extract 键盘相对于鼠标是高效的,可以多使用。好用的终端环境不仅要好看,更加要高效,键盘虽然是高效的,但是还是要减少手指的移动和敲击。
安装oh-my-zsh: sh -c"$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" 安装oh-my-zsh主题# 内置主题列表# oh-my-zsh提供一批内置主题,可以直接设置使用 在内置主题列表寻找你你喜欢的主题:https://github.com/robbyrussell/oh-my-zsh/wiki/Themes 在~/.zshrc配...
Oh My Zsh 安装 设置默认shell 主题 字体 高亮 自动填充 自定义 1. Terminal的个性化设置 其实每个人在使用终端时,都会对终端做一点个性的设置,以便用起来或看起来比较顺手和顺眼,下面是几个比较常用和基础的设置: ps:以下内容都会使用vim编译器,如果不是很熟悉可以移步鄙人整理的这篇文章——vim ...
wget https://pd.zwc365.com/https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh # 设置远端地址为github镜像地址 Export REMOTE=https://hub.fastgit.org/ohmyzsh/ohmyzsh.git sh install.sh 安装starship sh -c "$(curl -fsSL https://pd.zwc365.com/https://starship.rs/...
wget https://pd.zwc365.com/https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh # 设置远端地址为github镜像地址 Export REMOTE=https://hub.fastgit.org/ohmyzsh/ohmyzsh.git sh install.sh 安装starship sh -c "$(curl -fsSL https://pd.zwc365.com/https://starship.rs/...
cd ~/.oh-my-zsh/custom/plugins git clone https://github.com/zsh-users/zsh-autosuggestions.git 2.用 vim(或者在根目录下找到并)打开 .zshrc 文件,找到插件设置命令,默认是 plugins=(git) ,我们把它修改为: plugins=(zsh-autosuggestions git) ...
sudo apt updatesudo apt install git zsh -y复制代码 再安装 oh-my-zsh: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"复制代码 很大可能会有这个报错,这是因为网络问题: curl: (7) Failed to connect to raw.githubusercontent.com port 443:...
$ brew install zsh 1. zsh就安装在/bin/zsh路径里 系统默认的环境是bash,从bash进入zsh只需要输入:zsh即可,相反也是一样。 安装oh-my-zsh $ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ...