update
This commit is contained in:
16
.zshrc
16
.zshrc
@ -124,6 +124,9 @@ fi
|
||||
alias py=python3
|
||||
alias ll="ls -lah"
|
||||
|
||||
qrshow(){
|
||||
qrencode $1 -o - | viu -
|
||||
}
|
||||
|
||||
# Shortcuts
|
||||
alias sshconfig="$EDITOR ~/.ssh/config"
|
||||
@ -167,6 +170,13 @@ HISTFILE=~/.histfile
|
||||
HISTSIZE=10000
|
||||
SAVEHIST=10000
|
||||
|
||||
# Android tools
|
||||
export ANDROID_SDK_ROOT="$HOME/.local/opt/android-sdk"
|
||||
export ANDROID_HOME="$ANDROID_SDK_ROOT"
|
||||
export PATH="$PATH:$ANDROID_SDK_ROOT/cmdline-tools/latest/bin"
|
||||
export PATH="$PATH:$ANDROID_SDK_ROOT/build-tools/36.0.0/"
|
||||
export PATH="$PATH:$ANDROID_SDK_ROOT/emulator"
|
||||
|
||||
# Unlock hyprlock
|
||||
alias unlock=pkill -USR1 hyprlock
|
||||
|
||||
@ -180,11 +190,17 @@ export SDKMAN_DIR="$HOME/.sdkman"
|
||||
# Yarn
|
||||
export PATH="$HOME/.yarn/bin:$PATH"
|
||||
|
||||
# More path stuff
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
# pyenv stuff (make sure this is at the end of the file)
|
||||
export PYENV_ROOT="$HOME/.pyenv"
|
||||
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
|
||||
eval "$(pyenv init -)"
|
||||
|
||||
#nvm
|
||||
source /usr/share/nvm/init-nvm.sh
|
||||
|
||||
## [Completion]
|
||||
## Completion scripts setup. Remove the following line to uninstall
|
||||
[[ -f /home/paul/.dart-cli-completion/zsh-config.zsh ]] && . /home/paul/.dart-cli-completion/zsh-config.zsh || true
|
||||
|
||||
Reference in New Issue
Block a user