diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2016-02-13 12:03:17 -0500 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2016-02-13 12:09:02 -0500 |
commit | 800fed4277f39c97ebd22546e43f159c7b906477 (patch) | |
tree | 46c28f0d9b1d0f3b24624a9ab6a5bbbd951d3661 | |
parent | c480378efd003255b3dc6b488ecb5ffca3ca8ecc (diff) |
Update bash config.
-rw-r--r-- | dotfiles/.bash_profile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dotfiles/.bash_profile b/dotfiles/.bash_profile index bc424ab..2813e89 100644 --- a/dotfiles/.bash_profile +++ b/dotfiles/.bash_profile @@ -28,9 +28,8 @@ fi export EDITOR=emacsclient # Guile -export GUILE_LOAD_PATH="/home/dave/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_PATH" - export GUILE_LOAD_COMPILED_PATH="/home/dave/.guix-profile/lib/guile/2.0/ccache:/home/dave/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_COMPILED_PATH" - +export GUILE_LOAD_PATH="$HOME/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_PATH" +export GUILE_LOAD_COMPILED_PATH="$HOME/.guix-profile/lib/guile/2.0/ccache:$HOME/.guix-profile/share/guile/site/2.0:$GUILE_LOAD_COMPILED_PATH" # Ruby export GEM_PATH="$HOME/.guix-profile/lib/ruby/gems/2.2.0" @@ -38,6 +37,12 @@ export GEM_PATH="$HOME/.guix-profile/lib/ruby/gems/2.2.0" # Guix export GUIX_PACKAGE_PATH="$HOME/Code/guix-custom" +# Info +export INFOPATH="$HOME/.guix-profile/share/info" + +# Pidgin +export PURPLE_PLUGIN_PATH="$HOME/.guix-profile/lib/purple-2:/home/dthompson/.guix-profile/lib/pidgin" + export TERMINFO_DIRS="/home/dave/.guix-profile/share/terminfo" # Extra configuration needed on non-GuixSD systems. @@ -51,5 +56,6 @@ fi if vhl then export PATH="$HOME/.chefdk/gem/ruby/2.1.0/bin:/opt/chefdk/bin:$HOME/.rbenv/bin:$PATH" + export GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt eval "$(rbenv init -)" fi |