Last active
November 29, 2016 06:18
-
-
Save nzw0301/58c9a29460300c309e00177a397dfe06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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