ddu-source-rg を導入する Slack の vim-jp に、grep 何を使っていますか~と問いかけたら、ddu-source-rg 使ってるよ~という情報をいただき、早速導入した。 まずは、 本家 に書いてあるような設定を施す。 ripgrep のインストール まずは、 ripgrep をインストールする。 すでに導入済みの人はこのステップを飛ばして良い。 自分は Windows 環境なので、 Scoop で導入した。 Scoop を導入していない人は、Scoop を先に導入する事。 PowerShell で下記コマンドを叩き込めば、勝手にインストールされる。 Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time irm get.scoop.sh | iex Scoop の導入が完了してるならば、ripgrep をインストールする。 scoop install ripgrep ddu-source-rg の導入 ddu-source-rg は、Plug やら dein やらでインストールする。 自分は、dein.toml で管理しているので、dein.toml に [[plugins]] repo='shun/ddu-source-rg' を追記しただけ。 後は、dein#install()を実行。 ddu-source-rg の設定 本家にはシンプルに call ddu#custom#patch_global({ \ 'sourceParams' : { \ 'rg' : { \ 'args': ['--column', '--no-heading', '--color', 'never'], \ }, \ }, \ }) と書いてあるので、ddu#custom#patch_global に同じ設定をすれば良い。 ごちゃごちゃしてるけれど、自分のはこんな感