Skip to content

Instantly share code, notes, and snippets.

@nzw0301
Last active November 29, 2016 06:18
Show Gist options
  • Save nzw0301/58c9a29460300c309e00177a397dfe06 to your computer and use it in GitHub Desktop.
Save nzw0301/58c9a29460300c309e00177a397dfe06 to your computer and use it in GitHub Desktop.
# install fisherman
curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs git.io/fisher
fisher install omf/theme-integral
fisher pyenv
fisher rbenv
alias es "emacs --daemon"
funcsave es
alias jn "jupyter notebook"
funcsave jn
alias ec "emacsclient -c"
funcsave ec
alias jc "jupyter console"
funcsave jc
# for reverse incremental search fzf https://github.com/junegunn/fzf
brew install fzf
/usr/local/opt/fzf/install
# add http://tedwise.com/2016/02/26/using-sdkman-with-the-fish-shell for sdkman
# add https://github.com/gcuisinier/jenv/tree/master/fish for jenv
# install fish-mode in emacs
# pdfcrop alias
function crop
for f in *.pdf
pdfcrop "$f" "$f"
end
end
funcsave crop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment