54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
# ~/.profile: executed by the command interpreter for login shells.
|
|
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
|
# exists.
|
|
# see /usr/share/doc/bash/examples/startup-files for examples.
|
|
# the files are located in the bash-doc package.
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/bin" ] ; then
|
|
PATH="$HOME/bin:$PATH"
|
|
fi
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/.local/bin" ] ; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
### AAA ##########################################
|
|
|
|
export JAVA_HOME="/usr/bin/"
|
|
export PATH="$PATH:/opt/nvim/bin/"
|
|
export PATH="$PATH:$HOME/.local/bin/"
|
|
export PATH="$PATH:$HOME/.local/share/JetBrains/Toolbox/scripts/"
|
|
|
|
if hash composer >/dev/null; then
|
|
composer_home=$(composer config -g home 2>/dev/null)
|
|
export PATH="$PATH:$composer_home/vendor/bin"
|
|
fi
|
|
|
|
# phpbrew
|
|
# export PHPBREW_SET_PROMPT=1
|
|
# export PHPBREW_RC_ENABLE=1
|
|
# [ -f $HOME/.phpbrew/bashrc ] && source $HOME/.phpbrew/bashrc
|
|
|
|
# golang
|
|
export PATH="$PATH:/usr/local/go/bin"
|
|
export GOPATH="$HOME/.go"
|
|
|
|
# rust cargo
|
|
[ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env"
|
|
|
|
# nvm
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
# The next line updates PATH for Yandex Cloud CLI.
|
|
[ -f "$HOME/yandex-cloud/path.bash.inc" ] && source "$HOME/yandex-cloud/path.bash.inc"
|
|
|
|
# The next line enables shell command completion for yc.
|
|
[ -f "$HOME/yandex-cloud/completion.zsh.inc" ] && source "$HOME/yandex-cloud/completion.zsh.inc"
|
|
|
|
# misc
|
|
[[ -f $HOME/.profile.extra ]] && source $HOME/.profile.extra
|