diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-07-20 16:47:38 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-07-20 16:47:38 +0200 |
commit | e54959e39ec8f326bc0cff3c38e415744c60972f (patch) | |
tree | ee70cbc92038d9a418206f4ac3a12892158244d4 | |
parent | 2cb756fcf049e867c233c0d1b2f67faa237dc50a (diff) |
zsh calc plugin garbage let's use python instead
-rw-r--r-- | .zshrc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,13 +4,15 @@ plugins=( git zsh-autosuggestions zsh-syntax-highlighting - calc ) # oh-my-zsh export ZSH="$HOME/.local/share/oh-my-zsh" source $ZSH/oh-my-zsh.sh +# shift-tab fix +bindkey '^[[Z' reverse-menu-complete + compinit -D # ueberzug @@ -30,8 +32,10 @@ alias clipout="xclip -selection c -out" alias ncp="ncmpcpp" alias dnd="dragon-drag-and-drop -x" alias scdl="scdl --onlymp3 -l" -alias screenrecord='giph -s -b 4 -c 255,255,255 $(date +"$HOME/%Y-%m-%d_%H-%M-%S.mp4")' +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 ($*)" } +aliases[=]="noglob =" # one letters alias r="ranger" |