zsh-autosuggestions输入命令时从history中找到最符合的命令<right> 使用该 suggestion zsh-syntax-highlighting高亮输入命令 fzf-tabtab时使用fzf进行候选选择 常用git命令支持(非插件)gco=git checkoutgpo=git push origin <当前分支>gpl=git pull origin <当前分支>gd=git diffgs=git statusgss=更简洁的 git statu...
Hi, I installed Oh My Zsh on iOS (and made surefzfis installed and in my PATH) but when starting Zsh I get: [oh-my-zsh] fzf plugin: Cannot find fzf installation directory. Please add `export FZF_BASE=/path/to/fzf/install/dir` to your .zshrc The fzf binary is in/var/jb/usr/bi...
在oh-my-zsh GitHub上下载 zip -> 解压 -> 移动 oh-my-zsh 目录到根目录: cd~/Downloadsmvohmyzsh-master ~/.oh-my-zshcp~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrcsource~/.zshrc 好了,重新启动 iTerm2,是不是已经变了。 常用插件 介绍 zsh-syntax-highlighting - 语法高亮插件,让命令...
安装zplug 插件管理器 # https://github.com/zplug/zplug curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh 复制zshrc 文件 # 复制我的 zshrc 文件,你可以删除相应的 fzf, thefuck 配置,brew install 相应的命令行工具 # https://github....
如果你安装过卸载 ohmyzsh # 卸载 uninstall_oh_my_zsh 安装zimfw curl -fsSL https://raw.githubusercontent.com/zimfw/install/master/install.zsh | zsh 如果有这个错,请把 DNS 改成8.8.8.8 等待一会儿,可能需要 fq(github) zimfw安装完成 插件和主题配置 git clone https://github.com/matyle/matyl...
默认情况下 zsh 是不支持通配符(*)匹配的,若要允许zsh使用通配符,请添加以下内容到~/.zshrc中: setnonomatch 使用fzf fzf (fuzzy finder)插件可以方便我们查找历史命令,并且大大减少原本ctrl+R的不便利程度。 安装只须在终端输入: sudo aptinstallfzf
Repository files navigation README MIT license zsh-fzf A simple mirror of oh-my-zsh's fzf plugin. This plugin was not created by me. I'm simply hosting it here for use outside of oh-my-zsh.AboutA simple repository for hosting oh-my-zsh's fzf plugin. github...
Oh My Zsh是一个开源的、社区驱动的命令行工具,旨在增强Linux终端体验。它由Robby Russell开发,最初是个人维护的项目,但现在已经发展成为一个拥有广泛社区支持的开源项目。 通过安装和使用Oh My Zsh,用户可以获得丰富的插件和主题,从而提升命令行操作的效率和愉悦度。例如,它提供了版本控制、编码、编码风格检查、自动...
默认配置 setup.sh将安装ripgrep , fd , fzf , neovim , vim-plug和ohmyzsh 。 我想90%地确定脚本是非破坏性的。 设置 与zsh运行,以便source命令起作用。 $ zsh setup.sh 客制化 在zshrc.d您可以创建一个local目录,并添加旨在仅在当前计算机上使用的其他zsh配置。 这些文件将被git忽略。 例如 zshrc.d |...
1.安装fzf brew install fzf 2.安装插件 在~/.oh-my-zsh/plugins下面创建文件夹fzf, 在fzf创建文件fzf.plugin.zsh。 添加如下脚本: # Exit if fzf is not installed if ! builtin type fzf >/dev/null 2>&1; then return fi # Setup fzf if [[ ! "$PATH" == */usr/local/opt/fzf/bin* ]...