diff options
-rw-r--r-- | .zshrc | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -10,6 +10,9 @@ plugins=( export ZSH="$HOME/.local/share/oh-my-zsh" source $ZSH/oh-my-zsh.sh +# esp8266 rtos sdk +export IDF_PATH="/opt/ESP8266_RTOS_SDK/" + # shift-tab fix bindkey '^[[Z' reverse-menu-complete @@ -34,8 +37,12 @@ alias dnd="dragon-drag-and-drop -x" alias scdl="scdl --onlymp3 -l" alias screenrecord='giph -f 60 -s -b 4 -c 255,255,255 $(date +"$HOME/%Y-%m-%d_%H-%M-%S.mp4")' alias deemix="deemix -b FLAC -p ~/dl" -function = () { python2 -c "print ($*)" } + +function = () { python3 -c "print($*)" } aliases[=]="noglob =" +alias 16="python3 -c 'import sys;print(f\"{int(sys.stdin.read().strip()):x}\")'" + +alias :tada:="echo '🎉'" # one letters alias r="ranger" |