12 lines
427 B
Bash
12 lines
427 B
Bash
# Public environment settings
|
|
#
|
|
# Example: can be shell compatible stuff like export, alias etc. or just
|
|
# define variables like FOO=BAR
|
|
#
|
|
# You should put private stuff to .penv. It is handled the same way as this
|
|
# file but will be ignored by .gitignore.
|
|
#
|
|
|
|
# Extend the $PATH to $HOME/bin and more.
|
|
export PATH=$HOME/bin:$HOME/.local/bin/:$HOME/.gem/ruby/3.3.0/bin:$HOME/.android/sdk/platform-tools:$HOME/.cargo/bin:$PATH
|
|
|