Last active
February 26, 2026 16:09
-
-
Save vdeemann/6fdf7807d03760415b41aa9854fea248 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # MacPorts - MUST be first in PATH | |
| export PATH="/opt/local/bin:/opt/local/sbin:$PATH" | |
| # Commented out Homebrew paths | |
| #export PATH="/usr/local/opt/icu4c/bin:$PATH" | |
| #export PATH="/usr/local/opt/icu4c/sbin:$PATH" | |
| #source /opt/local/share/asdf/asdf.sh | |
| # Enable history in iex console | |
| #export ERL_AFLAGS="-kernel shell_history enabled" | |
| #export ERL_AFLAGS="+pc unicode -kernel shell_history enabled" | |
| #alias iex='iex --erl "-kernel shell_history enabled"' | |
| #alias iex='rlwrap iex' | |
| #export ERL_AFLAGS="-kernel shell_history enabled" | |
| #alias erl='ERL_AFLAGS="-kernel shell_history enabled -kernel shell_history_path \"$HOME/.erl_history\"" erl' | |
| #alias iex='ERL_AFLAGS="-kernel shell_history enabled -kernel shell_history_path \"$HOME/.iex_history\"" iex' | |
| export PATH="$HOME/.asdf/shims:$PATH" | |
| # Override asdf shims for erlang/elixir since asdf exec is broken in MacPorts version | |
| export PATH="$HOME/.asdf/installs/elixir/1.17.3-otp-26/bin:$HOME/.asdf/installs/erlang/26.2.5/bin:$PATH" | |
| # opencode | |
| export PATH=/Users/dee/.opencode/bin:$PATH | |
| . "$HOME/.local/bin/env" | |
| alias ctags='/opt/local/bin/uctags' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment