@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

rg(ripgrep)とlessを繋いだ関数

毎回オプションを忘れるので関数にまとめた。

function rgless(){
  rg -p "$@" | less -R
}

-p がpretty print, -Rエスケープシーケンスを解釈する(色を再現する)オプション。

github.com