Skip to content

Commit

Permalink
Use built-in sunrise theme; Fix gem home for rbenv
Browse files Browse the repository at this point in the history
  • Loading branch information
ston1x committed Dec 19, 2023
1 parent eb5cb8a commit 1616f2f
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ function gentags() {

# THEMES
# ZSH_THEME="flazz"
# ZSH_THEME="sunrise"
ZSH_THEME="sunrise-ruby"
ZSH_THEME="sunrise"
# ZSH_THEME="sunrise-ruby"
# ZSH_THEME="wuffers"
# ZSH_THEME="robbyrussell"
# ZSH_THEME="fino"
Expand Down Expand Up @@ -128,11 +128,11 @@ alias pp="RAILS_ENV=test ./bin/rake parallel:drop && RAILS_ENV=test ./bin/rake p
# run parallel specs
alias pr="RAILS_ENV=test ./bin/bundle exec rake parallel:spec"

export GEM_HOME=$HOME/.gem
export GEM_PATH=$HOME/.gem

# Update from 19.12.2023 - this is not necessary anymore since rbenv uses its own gem home
# export GEM_HOME=$HOME/.gem
# export GEM_PATH=$HOME/.gem
# Add gem binaries
export PATH="$PATH:$GEM_HOME/bin"
# export PATH="$PATH:$GEM_HOME/bin"

# Rust binaries
export PATH="$HOME/.cargo/bin:$PATH"
Expand Down Expand Up @@ -160,6 +160,9 @@ alias ibrew='arch -x86_64 /usr/local/bin/brew'
# export PATH="/usr/local/opt/libpq/bin:/opt/homebrew/bin:/usr/local/bin:$PATH"
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"

export LDFLAGS="-L/opt/homebrew/opt/libpq/lib"
export CPPFLAGS="-I/opt/homebrew/opt/libpq/include"
export PKG_CONFIG_PATH="/opt/homebrew/opt/libpq/lib/pkgconfig"
# export LDFLAGS="-L/opt/homebrew/opt/libpq/lib"
# export CPPFLAGS="-I/opt/homebrew/opt/libpq/include"
# export PKG_CONFIG_PATH="/opt/homebrew/opt/libpq/lib/pkgconfig"

# Temporary fix for RubyMine not running tests (NSCFConstantString issue)
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES

0 comments on commit 1616f2f

Please sign in to comment.