mirror of https://github.com/aldy505/dotfiles.git
update python and deb script
This commit is contained in:
parent
8524da2caa
commit
27ef720d8e
|
@ -2,6 +2,8 @@
|
||||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||||
# for examples
|
# for examples
|
||||||
export ME="/home/$(whoami)"
|
export ME="/home/$(whoami)"
|
||||||
|
export DOTFILES_PATH=/home/reinaldy/.dotfiles
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
case $- in
|
case $- in
|
||||||
*i*) ;;
|
*i*) ;;
|
||||||
|
@ -118,7 +120,7 @@ if ! shopt -oq posix; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# fnm
|
# fnm
|
||||||
export PATH=$ME/.fnm:/opt/julia/bin:/opt/python/3.9.6/bin:/usr/lib/jvm/java-11-openjdk-amd64/bin:/opt/bin:$ME/.fly/bin:$ME/go/bin:$DOTFILES_PATH/bin:$PATH
|
export PATH=$ME/.fnm:/opt/julia/bin:/opt/python/3.10.0/bin:/usr/lib/jvm/java-11-openjdk-amd64/bin:/opt/bin:$ME/.fly/bin:$ME/go/bin:$DOTFILES_PATH/bin:$PATH
|
||||||
eval "`fnm env`"
|
eval "`fnm env`"
|
||||||
|
|
||||||
export LIBGL_ALWAYS_INDIRECT=1
|
export LIBGL_ALWAYS_INDIRECT=1
|
||||||
|
@ -140,5 +142,4 @@ export GPG_AGENT_INFO=${HOME}/.gnupg/S.gpg-agent:0:1
|
||||||
export EDITOR="micro"
|
export EDITOR="micro"
|
||||||
export COLORTERM="truecolor"
|
export COLORTERM="truecolor"
|
||||||
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
|
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
|
||||||
export DOTFILES_PATH=/home/reinaldy/.dotfiles
|
|
||||||
eval "$(starship init bash)"
|
eval "$(starship init bash)"
|
||||||
|
|
|
@ -30,3 +30,4 @@ export GOPATH=$HOME/go
|
||||||
export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
|
export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
|
||||||
# :/usr/local/pypy3.7-v7.3.5-linux64/bin
|
# :/usr/local/pypy3.7-v7.3.5-linux64/bin
|
||||||
|
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
VERSION="3.9.6"
|
VERSION="3.10.0"
|
||||||
|
|
||||||
function install () {
|
function install () {
|
||||||
cd ~
|
cd ~
|
||||||
|
|
|
@ -55,7 +55,7 @@ fi
|
||||||
./scripts/go.sh install
|
./scripts/go.sh install
|
||||||
|
|
||||||
./scripts/julia.sh install
|
./scripts/julia.sh install
|
||||||
|
|
||||||
./scripts/rust.sh install
|
./scripts/rust.sh install
|
||||||
|
|
||||||
./scripts/java.sh install_alt
|
./scripts/java.sh install_alt
|
||||||
|
|
Loading…
Reference in New Issue