Skip to content

Instantly share code, notes, and snippets.

@johnrlive
Last active October 30, 2017 18:51
Show Gist options
  • Save johnrlive/517f5d96fdb450c26e1f17bd10c5a823 to your computer and use it in GitHub Desktop.
Save johnrlive/517f5d96fdb450c26e1f17bd10c5a823 to your computer and use it in GitHub Desktop.
config.fish
set -U fish_user_paths /usr/local/bin $fish_user_paths
### rbenv ###
#set PATH $HOME/.rbenv/bin $PATH
set PATH $HOME/.rbenv/shims $PATH
rbenv rehash >/dev/null ^&1
#set -gx RBENV_ROOT /usr/local/bin/rbenv
### OpenSSL fix for Rbnev Install ###
set -g fish_user_paths "/usr/local/opt/openssl/bin" $fish_user_paths
## For compilers to find this software you may need to set:
export LDFLAGS=-L/usr/local/opt/openssl/lib
export CPPFLAGS=-I/usr/local/opt/openssl/include
## For pkg-config to find this software you may need to set:
export PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig
### Custom Functions ###
function ..
cd ..
end
function cd..
cd ..
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment