Skip to content

Commit

Permalink
moving things around
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Swihart committed Oct 4, 2015
1 parent 5501d9c commit 32ddc06
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 123 deletions.
6 changes: 0 additions & 6 deletions config/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ source "${HOME}/.zgen.zsh"
if ! zgen saved; then
echo "Creating a zgen save"

zgen oh-my-zsh
omzplugs=(ssh-agent pyenv git)
# plugins
for plug in "${omzplugs[@]}"; do
zgen oh-my-zsh plugins/$plug
done
zgen load zsh-users/zsh-syntax-highlighting

# Themes
Expand Down
1 change: 0 additions & 1 deletion nvim/nvimrc.plugins
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Plug 'jsx/jsx.vim'
Plug 'mitsuhiko/jinja2', { 'rtp': 'ext/Vim' }
Plug 'groenewege/vim-less'

Plug 'bbenne10/simpleburn'
Plug 'morhetz/gruvbox'

call plug#end()
54 changes: 0 additions & 54 deletions shell/copy.sh

This file was deleted.

60 changes: 0 additions & 60 deletions shell/myfzf.sh

This file was deleted.

4 changes: 2 additions & 2 deletions shell/python.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export PYENV_ROOT="$HOME/.pyenv"

if $(which pyenv 2>&1 >/dev/null); then
eval "$(pyenv init -)"
eval "$(pyenv init --no-rehash -)"
elif test -f $PYENV_ROOT/bin/pyenv; then
eval "$($PYENV_ROOT/bin/pyenv init -)"
eval "$($PYENV_ROOT/bin/pyenv init --no-rehash -)"
fi

test -d $PYENV_ROOT/plugins/pyenv-virtualenv && eval "$($PYENV_ROOT/bin/pyenv virtualenv-init -)"
Expand Down
10 changes: 10 additions & 0 deletions shell/ssh.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
if [[ -f ~/.ssh-find-agent.sh ]]; then
source ~/.ssh-find-agent.sh
ssh-find-agent -a
if [ -z "$SSH_AUTH_SOCK" ]
then
eval $(ssh_agent) > /dev/null
ssh-add -l >/dev/null || alias ssh='ssh-add -l >/dev/null || ssh-add && unalias ssh; ssh'
fi
fi

0 comments on commit 32ddc06

Please sign in to comment.