Skip to content

Commit

Permalink
additional fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Dec 19, 2023
1 parent 55a51f5 commit f404415
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
7 changes: 0 additions & 7 deletions homebrew/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,16 @@ tap "homebrew/core"

# core binaries
brew "ack" # instead of grep
brew "awscli"
brew "coreutils" # those that come with macOS are outdated
brew "chrome-cli"
brew "ffmpeg"
brew "findutils"
brew "gh"
brew "git"
brew "gnupg2"
brew "httpie"
brew "hub"
brew "imagemagick"
brew "mackup"
brew "mas" # Mac App Store manager
brew "openssh"
brew "pinentry-mac"
brew "ruby"
brew "thefuck"
Expand All @@ -44,6 +40,3 @@ brew "nginx"
brew "python"
brew "pyenv"
brew "pyenv-virtualenv"
brew "readline"
brew "openssl"
brew "zlib"
1 change: 1 addition & 0 deletions macos/.mackup/my-dotfiles.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ name = dotfiles
.dotfiles/private/MIGRATION.md
.dotfiles/python/pypirc.symlink
.config/tmuxinator
.netrc
2 changes: 1 addition & 1 deletion macos/update
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ success "Updated software, this might need a reboot"

# update gem files
require_sudo
# sudo gem update --system > /dev/null 2>&1
sudo gem update --system > /dev/null 2>&1
success "Skipped gems"

# backup app preferences
Expand Down
6 changes: 6 additions & 0 deletions python/paths.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Sites
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
export PIP_REQUIRE_VIRTUALENV=true # to avoid global installs
export PYENV_VIRTUALENV_DISABLE_PROMPT=1

# pyenv
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"

# pipx
# eval "$(register-python-argcomplete pipx)"
2 changes: 1 addition & 1 deletion system/paths.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prepend_path "/bin"
prepend_path "/usr/bin"
prepend_path "/usr/local/bin"
prepend_path "/usr/local/opt/ruby/bin"
prepend_path "/usr/local/lib/ruby/gems/2.7.0/bin"
prepend_path "/opt/homebrew/opt/ruby/bin"
prepend_path "/usr/local/opt/curl/bin"
prepend_path "/sbin"
prepend_path "/usr/sbin"
Expand Down

0 comments on commit f404415

Please sign in to comment.