From e54959e39ec8f326bc0cff3c38e415744c60972f Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 20 Jul 2021 16:47:38 +0200 Subject: zsh calc plugin garbage let's use python instead --- .zshrc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index d003b09..7b1f7a4 100644 --- a/.zshrc +++ b/.zshrc @@ -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" -- cgit v1.2.3