a bunch of changes
[~bandali/configs] / zsh / .zshrc.local
1 # Base16 Shell
2 BASE16_SCHEME="thewildhunt"
3 BASE16_SHELL="$HOME/.theme/base16-$BASE16_SCHEME.dark.sh"
4 [[ -s $BASE16_SHELL ]] && . $BASE16_SHELL
5
6 PATH="$HOME/.local/bin:$PATH"
7 PATH="`ruby -e 'print Gem.user_dir'`/bin:$PATH"
8 PATH="/opt/android-sdk/platform-tools:$PATH"
9
10 # take
11 function take() {
12 mkdir -p $1
13 cd $1
14 }
15
16 function y() {
17 cd ~/music
18 youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 $1
19 }
20
21 eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets,ssh) ; export GPG_AGENT_INFO SSH_AUTH_SOCK
22