diff options
author | Amin Bandali <me@aminb.org> | 2014-11-21 22:08:00 -0500 |
---|---|---|
committer | Amin Bandali <me@aminb.org> | 2014-11-21 22:08:00 -0500 |
commit | d760033f89f7284473895b207e1e36b2f934e8b8 (patch) | |
tree | bd91c8fe86aea33b8054195bd913f16cb9655fbc /zsh | |
parent | e6915379a3e4dac6a7ea56c6f148042bf9d1a6f3 (diff) | |
download | configs-d760033f89f7284473895b207e1e36b2f934e8b8.tar.gz configs-d760033f89f7284473895b207e1e36b2f934e8b8.tar.xz configs-d760033f89f7284473895b207e1e36b2f934e8b8.zip |
new installation setup
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zprofile | 2 | ||||
-rw-r--r-- | zsh/.zshrc | 23 | ||||
-rw-r--r-- | zsh/.zshrc.local | 22 |
3 files changed, 24 insertions, 23 deletions
diff --git a/zsh/.zprofile b/zsh/.zprofile index 65f92a6..f64674a 100644 --- a/zsh/.zprofile +++ b/zsh/.zprofile @@ -1,4 +1,4 @@ -# [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx +[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..ec92298 --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,23 @@ +# Base16 Shell +#BASE16_SCHEME="thewildhunt" +#BASE16_SHELL="$HOME/.theme/base16-$BASE16_SCHEME.dark.sh" +#[[ -s $BASE16_SHELL ]] && . $BASE16_SHELL + +PATH="$HOME/.local/bin:$PATH" +#PATH="`ruby -e 'print Gem.user_dir'`/bin:$PATH" +PATH="/opt/android-sdk/platform-tools:$PATH" +#source ~/.profile + +# take +function take() { + mkdir -p $1 + cd $1 +} + +function y() { + cd ~/music + youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 $1 +} + +#eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets,ssh) ; export GPG_AGENT_INFO SSH_AUTH_SOCK + diff --git a/zsh/.zshrc.local b/zsh/.zshrc.local deleted file mode 100644 index 11ce4cc..0000000 --- a/zsh/.zshrc.local +++ /dev/null @@ -1,22 +0,0 @@ -# Base16 Shell -BASE16_SCHEME="thewildhunt" -BASE16_SHELL="$HOME/.theme/base16-$BASE16_SCHEME.dark.sh" -[[ -s $BASE16_SHELL ]] && . $BASE16_SHELL - -PATH="$HOME/.local/bin:$PATH" -PATH="`ruby -e 'print Gem.user_dir'`/bin:$PATH" -PATH="/opt/android-sdk/platform-tools:$PATH" - -# take -function take() { - mkdir -p $1 - cd $1 -} - -function y() { - cd ~/music - youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 $1 -} - -eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets,ssh) ; export GPG_AGENT_INFO SSH_AUTH_SOCK - |