12 lines
279 B
Bash
12 lines
279 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
export PATH="$PATH:/home/jaroslaw/.local/bin"
|
|
export PATH=$PATH:~/bin
|
|
export PATH=$PATH:/home/jaroslaw/.local/share/gem/ruby/3.4.0/bin
|
|
export PATH=$PATH:/home/jaroslaw/.cargo/bin
|
|
export EDITOR=nvim
|
|
eval "$(rbenv init -)"
|