X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;ds=sidebyside;f=states%2Fzsh%2Ffiles%2Fzshrc;h=aeed74141217c9de959c79ca4c15f906ba4cffa0;hb=HEAD;hp=f453e8b432d734e922b54f0b1dcdbf768735d53d;hpb=5e6a2a77b77743b92794ee861069710d94895ae3;p=max%2Fsaltfiles.git diff --git a/states/zsh/files/zshrc b/states/zsh/files/zshrc index f453e8b..aeed741 100644 --- a/states/zsh/files/zshrc +++ b/states/zsh/files/zshrc @@ -39,21 +39,21 @@ p+=":%F{blue}%~%f" p+="${NEWLINE}%(!.#.$) " virtual_env() { - if [ -n "${VIRTUAL_ENV+1}" ]; then - home_rel_path=$(echo ${VIRTUAL_ENV} | sed "s;^${HOME};~;") - echo -n "(${home_rel_path}) " - fi + if [ -n "${VIRTUAL_ENV+1}" ]; then + home_rel_path=$(echo ${VIRTUAL_ENV} | sed "s;^${HOME};~;") + echo -n "(${home_rel_path}) " + fi } source ~/.git-prompt.sh precmd () { - __git_ps1 "" "$(virtual_env)${p}" "${NEWLINE}[%s]${NEWLINE}" + __git_ps1 "" "$(virtual_env)${p}" "${NEWLINE}[%s]${NEWLINE}" } bindkey '^R' history-incremental-search-backward if [[ -f ~/.shell_aliases ]]; then - source ~/.shell_aliases + source ~/.shell_aliases fi export WORKON_HOME=~/.virtualenvs @@ -89,3 +89,20 @@ chpwd() { export GPG_TTY=$(tty) gpg-connect-agent updatestartuptty /bye >/dev/null + +ZSH_AUTOSUGGEST_STRATEGY=(history completion) +ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=30 + +source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh + +sri() { + base64_hash=$(curl "$1" | shasum -b -a "$2" - | awk '{print $1}' | xxd -r -p | base64) + echo "sha${2}-${base64_hash}" +} + +scrot() { + tmp_file=$(mktemp --tmpdir XXXXXX_scrot.png) + grim -g "$(slurp)" "$tmp_file" + echo "$tmp_file" +}