58 lines
1.9 KiB
Bash
58 lines
1.9 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 ##########################################
|
|
|
|
[ -f ~/.bash_aliases ] && source ~/.bash_aliases
|
|
[ -f ~/.profile.extra ] && source ~/.profile.extra
|
|
|
|
export LITE_SCALE=1 # workaround https://github.com/lite-xl/lite-xl/issues/1173
|
|
|
|
export JAVA_HOME="/usr/bin/"
|
|
export PATH="/opt/nvim/bin:$PATH"
|
|
export PATH="$HOME/.local/bin/:$PATH"
|
|
export PATH="$HOME/.local/share/JetBrains/Toolbox/scripts:$PATH"
|
|
export PATH="$(composer config -g home)/vendor/bin:$PATH"
|
|
|
|
# phpbrew
|
|
# export PHPBREW_SET_PROMPT=1
|
|
# export PHPBREW_RC_ENABLE=1
|
|
# [ -f ~/.phpbrew/bashrc ] && source ~/.phpbrew/bashrc
|
|
|
|
# golang
|
|
export PATH="/usr/local/go/bin:$PATH"
|
|
export GOPATH="$HOME/.go"
|
|
|
|
# rust cargo
|
|
[ -f ~/.cargo/env ] && source ~/.cargo/env
|
|
|
|
# nvm
|
|
# export NVM_DIR="$HOME/.nvm"
|
|
# [ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" # This loads nvm
|
|
# [ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
# neovim
|
|
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"
|
|
|