1、安装oh-my-zsh 一、安装brew ruby -e "$(curl -fsSLhttps://raw.githubusercontent.com/Homebrew/install/master/install)" 二、安装zsh sudo brew install zsh 三、使用vim .zshrc打开.zshrc(有些人会找不到.zshrc这个文件,其实安装了zsh才会有.zshrc ,在默认打开的终端目录下。可以打开终端并且ls -a查...
oh my zsh默认自带了一些默认主题,存放在~/.oh-my-zsh/themes目录中。我们可以查看这些主题: $ cd~/.oh-my-zsh/themes&&ls ③ 卸载oh my zsh $ uninstall_oh_my_zshAreyou sure you want toremoveOhMyZsh?[y/N]Y ④ oh my zsh 的自动更新提示误触关掉了解决办法 $ upgrade_oh_my_zsh 二、安装au...
把autojump添加插件中,然后在后面添加此命令在配置文件中 plugins=( git zsh-autosuggestions autojump ) [-f/usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh 1. 2. 3. 4. 5. 6. 我的配置效果图 3.2 linux安装方式 #.下载插件autojump到/.oh-my-zsh/cust...
oh my zsh 常用插件 官方插件在这里,可以查看每个插件的具体使用方法。Plugins · ohmyzsh/ohmyzsh Wiki · GitHub 下面提供几个常用的插件: git:提供了许多与Git相关的别名和功能。 z:让你快速跳转到最近或经常使用的目录。 autojump:一个更加强大的目录跳转工具。 autosuggestions:根据你的命令历史为你提供自动...
cd /autojump 执行 ./install.py vim ~/.zshrc 把以下代码加到尾部 # 使用brew安装的 [[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh source $ZSH/oh-my-zsh.sh # 使用git安装的 ...
iterm2 + zsh + oh-my-zsh +autojump 升级你的命令行工具,这个我折腾了好久,才明白了各个之间的关系。 1.先下载一个item2 首先你需要下一个iterm2,不要用原来的mac自带的命令行,字体和配色都太low了。 iterm2配色 下载;https://github.com/mbadolato/iTerm2-Color-Schemes ...
cd /autojump 执行 ./install.py vim ~/.zshrc 把以下代码加到尾部 使用brew安装的 [[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh source $ZSH/oh-my-zsh.sh 使用git安装的
④ oh my zsh 的自动更新提示误触关掉了解决办法 upgrade_oh_my_zsh 二、安装autojump 插件功能:实现目录间快速跳转,想去哪个目录直接 j + 目录名,不用再频繁的 cd 了! 1. 安装步骤 在终端输入: $ brew install autojump 输出: 根据提示,在~/.zshrc文件中加入: ...
ZSH_THEME=”robbyrussell“ 插件 oh my zsh的插件是在~/.oh-my-zsh/plugins目录下,我们可以在在.zshrc文件中配置: plugins=(gitbundlerdotenvosxrakerbenvruby) git:当你的文件处于git目录时,Shell会显示git和branch,还会定义一些tag autojump:首先安装autojump, ...
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k 安装插件 # autojump 切换目录 sudo apt install autojump # fasd 快速访问文件或目录 sudo apt install fasd #zsh-autosuggestions历史命令建议 git clone https://github.com/zsh-users/zsh-autosuggestions ...