This commit is contained in:
Tyrel Souza 2017-05-05 10:00:59 -04:00
parent 916cdc9e9f
commit dc215d0db6
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
4 changed files with 7 additions and 21 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
vim/bundle/
vim/view
.netrwhist
chromedriver
config/fish/fishd.*

View File

@ -1,9 +1,7 @@
#!/bin/bash
set -e
set -x
set -v
if [ $OSTYPE = "darwin16.0" ];then
if [[ $OSTYPE == *"darwin16"* ]];then
umount /Volumes/ramdisk
mysql.server stop
killall mysqld

View File

@ -3,19 +3,10 @@ zstyle ':prezto:load' zmodule 'attr' 'stat'
zstyle ':prezto:load' zfunction 'zargs' 'zmv'
zstyle ':prezto:load' pmodule \
'environment' \
'terminal' \
'editor' \
'history' \
'history-substring-search' \
'directory' \
'utility' \
'completion' \
'homebrew' \
'osx' \
'git' \
'node' \
'python' \
'syntax-highlighting' \
'tmux' \
'prompt'
@ -26,8 +17,5 @@ zstyle ':prezto:module:editor' ps-context 'yes'
zstyle ':prezto:module:git:status:ignore' submodules 'all'
zstyle ':prezto:module:prompt' theme 'paradox'
zstyle ':prezto:module:prompt' long-pwd 'yes'
zstyle ':prezto:module:terminal' auto-title 'yes'
zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
zstyle ':prezto:module:terminal:multiplexer-title' format '%s'
zstyle ':prezto:module:tmux:iterm' integrate 'yes'

View File

@ -25,11 +25,7 @@ if [[ $OSTYPE == "*darwin*" ]];then
export PATH="/usr/local/opt/gnupg/libexec/gpgbin:$PATH"
fi
#
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval `ssh-agent -s`
ssh-add ~/.ssh/id_rsa
fi
#
eval `ssh-agent -s`
if [ -e ~/.ssh/id_addgene ];then
ssh-add ~/.ssh/id_addgene
fi
@ -40,4 +36,7 @@ if [ -e $HOME/.credentials ];then
source $HOME/.credentials
fi
export PYTHONSTARTUP=$HOME/.pythonstartup.py
eval "$(pyenv init -)"
export CFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib"
export LDFLAGS="-L/usr/local/opt/icu4c/lib"
export CPPFLAGS="-I/usr/local/opt/icu4c/include"
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig"