Skip to content

Instantly share code, notes, and snippets.

View zrma's full-sized avatar
🐈
桃李不言下自成蹊

zrma zrma

🐈
桃李不言下自成蹊
View GitHub Profile
@zrma
zrma / .bashrc
Last active July 30, 2024 07:38
ghq + fzf + ghg
# ghq + fzf
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
function fs {
local selected_dir=$(ghq list | fzf --query="$LBUFFER")
if [ -n "$selected_dir" ]; then
cd ${GOPATH}/src/${selected_dir}
fi
}
function hs {