Move some DotDirectories
This commit is contained in:
parent
adb2953f8c
commit
1ee146c5ba
2 changed files with 12 additions and 3 deletions
13
.bashrc
13
.bashrc
|
@ -42,15 +42,24 @@ source "$OSH"/oh-my-bash.sh
|
||||||
#################################
|
#################################
|
||||||
## Application Envs ##
|
## Application Envs ##
|
||||||
#################################
|
#################################
|
||||||
|
export PATH=$PATH:"$HOME/.local/bin"
|
||||||
|
|
||||||
|
# NPM
|
||||||
|
export npm_config_cache="$HOME/.cache/npm"
|
||||||
|
export npm_config_prefix="$HOME/.local/share/npm"
|
||||||
|
export npm_config_userconfig="$HOME/.config/npmrc"
|
||||||
|
|
||||||
# Volta
|
# Volta
|
||||||
export PATH=$PATH:~/.local/bin
|
export VOLTA_HOME="$HOME/.local/share/volta"
|
||||||
export VOLTA_HOME="$HOME/.volta"
|
|
||||||
export PATH="$VOLTA_HOME/bin:$PATH"
|
export PATH="$VOLTA_HOME/bin:$PATH"
|
||||||
|
|
||||||
# Podman as Docker on Immutable Distros
|
# Podman as Docker on Immutable Distros
|
||||||
export DOCKER_HOST=unix:///run/user/1000/podman/podman.sock
|
export DOCKER_HOST=unix:///run/user/1000/podman/podman.sock
|
||||||
|
|
||||||
|
# Go
|
||||||
|
export GOPATH=~/.local/share/go
|
||||||
|
export GOBIN=~/.local/bin/go
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
## Aliases ##
|
## Aliases ##
|
||||||
#################################
|
#################################
|
||||||
|
|
2
.profile
2
.profile
|
@ -1,3 +1,3 @@
|
||||||
# Volta
|
# Volta
|
||||||
export VOLTA_HOME="$HOME/.volta"
|
export VOLTA_HOME="$HOME/.local/share/volta"
|
||||||
export PATH="$VOLTA_HOME/bin:$PATH"
|
export PATH="$VOLTA_HOME/bin:$PATH"
|
||||||
|
|
Loading…
Reference in a new issue