1
0
mirror of https://github.com/drewcassidy/dotfiles synced 2024-06-11 05:44:06 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
f52507ac26 simplify zshrc and relegate it to backup shell 2020-10-26 01:21:45 -07:00
9a8c89db5a update fish config and fishline 2020-10-26 01:18:42 -07:00
4 changed files with 21 additions and 16 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
fish/.config/fish/fish_variables

10
.zshrc
View File

@ -4,9 +4,11 @@ export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
export PATH="$PATH:$HOME/Scripts" export PATH="$PATH:$HOME/Scripts"
export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/4.6.2/lib/pkgconfig":$PKG_CONFIG_PATH export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/4.6.2/lib/pkgconfig":$PKG_CONFIG_PATH
# added by travis gem # setup completion
[ -f /Users/drewcassidy/.travis/travis.sh ] && source /Users/drewcassidy/.travis/travis.sh autoload -Uz compinit
compinit
# setup histfile
HISTFILE=~/.histfile HISTFILE=~/.histfile
HISTSIZE=1000 HISTSIZE=1000
SAVEHIST=1000 SAVEHIST=1000
@ -15,7 +17,7 @@ unsetopt nomatch
bindkey -e bindkey -e
# colorize commands # colorize commands
# alias ls='ls -G' alias ls='ls -G'
alias grep='grep --color=auto' alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto' alias fgrep='fgrep --color=auto'
@ -24,5 +26,3 @@ alias egrep='egrep --color=auto'
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
export CLICOLOR=1 export CLICOLOR=1
export LSCOLORS='ExcxdxfxgxxexcxdxfBxBx' export LSCOLORS='ExcxdxfxgxxexcxdxfBxBx'
eval $(/usr/libexec/path_helper -s)

View File

@ -1,18 +1,22 @@
set -gxa PATH /usr/local/opt/curl/bin
set -gxa PATH /usr/local/opt/ruby/bin
set -gxa PATH /usr/local/opt/openssl/bin
set -gxa PATH /usr/local/opt/qt/bin
set -gxa PATH /usr/local/opt/llvm/bin
set -gxa PATH /opt/local/bin /opt/local/sbin
set -gxa PATH /usr/local/bin /usr/local/sbin
set -gxa PATH ~/.dotnet/tools
set -gxa PATH ~/Library/Python/2.7/bin
set -gxa PATH ~/Library/Python/3.8/bin
set -gxa PATH ~/.gem/ruby/2.7.0/bin
if status is-interactive if status is-interactive
# setup location variables # setup location variables
set FISH_PATH "$HOME/.config/fish" set FISH_PATH "$HOME/.config/fish"
set FLINE_PATH "$FISH_PATH/fishline" set FLINE_PATH "$FISH_PATH/fishline"
set -gx HOMEBREW_NO_AUTO_UPDATE 1
set -gx PATH /usr/local/opt/curl/bin $PATH
set -gx PATH /usr/local/opt/ruby/bin $PATH
set -gx PATH /usr/local/opt/openssl/bin $PATH
set -gx PATH /usr/local/opt/qt/bin $PATH
set -gx PATH /usr/local/opt/llvm/bin $PATH
set -gx PATH ~/.dotnet/tools $PATH
set -gx PATH ~/Library/Python/2.7/bin $PATH
set -gx PATH ~/Library/Python/3.8/bin $PATH
set -gx PATH ~/.gem/ruby/2.6.0/bin $PATH
set -gx PATH /opt/local/bin /opt/local/sbin $PATH
set -gx PKG_CONFIG_PATH /usr/local/opt/openssl/lib/pkgconfig $PKG_CONFIG_PATH set -gx PKG_CONFIG_PATH /usr/local/opt/openssl/lib/pkgconfig $PKG_CONFIG_PATH
set -gx PKG_CONFIG_PATH /usr/local/opt/libffi/lib/pkgconfig $PKG_CONFIG_PATH set -gx PKG_CONFIG_PATH /usr/local/opt/libffi/lib/pkgconfig $PKG_CONFIG_PATH

@ -1 +1 @@
Subproject commit fe142bdb105bb5165db144a7623953d6e59a0896 Subproject commit 8452006e2abf6e2c89e0cf50550265d3e650c086