#!/bin/zsh # Setup function, that resets terminal autoload -Uz add-zsh-hook function reset_broken_terminal () { printf '%b' '\e[0m\e(B\e)0\017\e[?5l\e7\e[0;0r\e8' } export ZSH="$HOME/.env/dotfiles/zsh" # Setup history HISTFILE="$HOME/.zsh_history" HISTSIZE=10000 SAVEHIST=10000 bindkey '\e[A' history-search-backward bindkey '\e[B' history-search-forward setopt HIST_IGNORE_ALL_DUPS setopt HIST_FIND_NO_DUPS setopt EXTENDED_HISTORY setopt INC_APPEND_HISTORY setopt SHARE_HISTORY setopt APPEND_HISTORY setopt HIST_NO_STORE REPORTTIME=3 autoload -Uz compinit bracketed-paste-magic url-quote-magic compinit zle -N bracketed-paste bracketed-paste-magic zle -N self-insert url-quote-magic zstyle ':completion:*' menu select # Source section source $HOME/.profile source $ZSH/themes/ivabus.zsh-theme source $ZSH/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # Alias section alias vi="nvim" alias vim="nvim" alias ls="ls --color=always" alias la="ls -la" alias rh="rehash" alias timestamp='date -u +%FT%TZ' alias yt-dlp-opus="yt-dlp -f 251 -x" alias jekyll_export="jekyll b -d ./_archive && cd _archive && tar cf ../site.tar ./ && cd .. && gzip -9 -f site.tar && rm -rf _archive" # ffmpeg section # Usage: ffmpeg_convert [] ffmpeg_convert() { ffmpeg -i $2 -c:v ${1}_videotoolbox $(if [ ! -z $4 ]; then echo "-q:v $4"; fi ) $3 } # Usage: ffmpeg_telegram_video_sticker: