2021-05-03 02:21:39 +02:00
|
|
|
[ ! -d ~/.oh-my-zsh ] && sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
|
|
|
|
|
|
|
|
export ZSH_CACHE_DIR="$ZSH/cache"
|
|
|
|
|
2019-11-19 01:21:43 +01:00
|
|
|
source ~/.zplug/init.zsh
|
|
|
|
zplug "denysdovhan/spaceship-prompt", use:spaceship.zsh, from:github, as:theme
|
2020-10-05 18:36:42 +02:00
|
|
|
zplug "zsh-users/zsh-autosuggestions", defer:2
|
|
|
|
zplug "zsh-users/zsh-history-substring-search", defer:2
|
2020-06-11 23:02:44 +02:00
|
|
|
zplug "plugins/git", from:oh-my-zsh, defer:2
|
|
|
|
zplug "plugins/gitignore", from:oh-my-zsh, defer:2
|
|
|
|
zplug "plugins/systemd", from:oh-my-zsh, defer:2
|
|
|
|
zplug "plugins/dnf", from:oh-my-zsh, defer:2
|
2021-02-04 22:43:56 +01:00
|
|
|
zplug "gradle/gradle-completion", from:github, defer:2
|
2021-05-03 02:32:40 +02:00
|
|
|
zplug "djui/alias-tips", defer:2
|
|
|
|
zplug "zdharma/fast-syntax-highlighting", defer:2
|
2020-10-05 18:36:42 +02:00
|
|
|
zplug 'zplug/zplug', hook-build:'zplug --self-manage'
|
2020-01-20 05:31:44 +01:00
|
|
|
|
|
|
|
# Install plugins if there are plugins that have not been installed
|
|
|
|
if ! zplug check --verbose; then
|
|
|
|
printf "Install? [y/N]: "
|
|
|
|
if read -q; then
|
|
|
|
echo; zplug install
|
|
|
|
fi
|
|
|
|
fi
|
2021-05-03 02:32:40 +02:00
|
|
|
zplug load
|
2019-11-19 01:21:43 +01:00
|
|
|
|
|
|
|
ZSH_THEME="spaceship"
|
2021-05-03 02:32:40 +02:00
|
|
|
SPACESHIP_PROMPT_ORDER=(time user dir host git hg package node ruby golang rust docker pyenv dotnet exec_time line_sep battery jobs exit_code char)
|
2020-03-18 04:39:47 +01:00
|
|
|
SPACESHIP_PROMPT_ADD_NEWLINE=false
|
2019-12-12 17:14:44 +01:00
|
|
|
SPACESHIP_PROMPT_SEPARATE_LINE=true
|
2019-11-19 01:21:43 +01:00
|
|
|
|
2021-05-03 02:32:40 +02:00
|
|
|
SPACESHIP_TIME_SHOW=true
|
|
|
|
SPACESHIP_TIME_COLOR=white
|
|
|
|
SPACESHIP_DIR_PREFIX="%F{green}â–² "
|
2019-11-19 01:21:43 +01:00
|
|
|
SPACESHIP_DIR_COLOR=blue
|
2020-04-27 22:57:54 +02:00
|
|
|
#SPACESHIP_DIR_TRUNC=3
|
2019-11-19 01:21:43 +01:00
|
|
|
SPACESHIP_DIR_TRUNC_REPO=false
|
2020-04-27 22:57:54 +02:00
|
|
|
SPACESHIP_HOST_SHOW=true
|
2019-11-19 01:21:43 +01:00
|
|
|
SPACESHIP_HOST_PREFIX="@"
|
|
|
|
SPACESHIP_HOST_COLOR=green
|
|
|
|
SPACESHIP_GIT_BRANCH_COLOR=red
|
2021-05-03 02:32:40 +02:00
|
|
|
SPACESHIP_GIT_STATUS_COLOR=red
|
|
|
|
SPACESHIP_GIT_STATUS_PREFIX=" "
|
|
|
|
SPACESHIP_GIT_STATUS_SUFFIX=""
|
|
|
|
SPACESHIP_GIT_STATUS_ADDED="%F{green}•%F{red}" # +
|
|
|
|
SPACESHIP_GIT_STATUS_UNTRACKED="%F{blue}•%F{red}" # ?
|
|
|
|
SPACESHIP_GIT_STATUS_DELETED="%F{red}•%F{red}" # x
|
|
|
|
SPACESHIP_GIT_STATUS_MODIFIED="%F{yellow}•%F{green}" # !
|
2019-12-10 01:19:42 +01:00
|
|
|
SPACESHIP_BATTERY_SHOW=true
|
2019-12-12 17:14:44 +01:00
|
|
|
SPACESHIP_BATTERY_THRESHOLD=35
|
2020-10-05 18:36:42 +02:00
|
|
|
SPACESHIP_CHAR_COLOR_SUCCESS=green
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Path to your oh-my-zsh installation.
|
2019-11-19 01:21:43 +01:00
|
|
|
export ZSH=$HOME/.oh-my-zsh
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Uncomment the following line to use case-sensitive completion.
|
|
|
|
# CASE_SENSITIVE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to use hyphen-insensitive completion. Case
|
|
|
|
# sensitive completion must be off. _ and - will be interchangeable.
|
|
|
|
HYPHEN_INSENSITIVE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
|
|
|
# DISABLE_AUTO_UPDATE="true"
|
|
|
|
|
2019-11-19 01:21:43 +01:00
|
|
|
# Uncomment the following line to automatically update without prompting.
|
|
|
|
DISABLE_UPDATE_PROMPT="true"
|
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# Uncomment the following line to change how often to auto-update (in days).
|
2020-10-05 18:36:42 +02:00
|
|
|
export UPDATE_ZSH_DAYS=3
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Uncomment the following line to disable colors in ls.
|
|
|
|
# DISABLE_LS_COLORS="true"
|
|
|
|
|
2021-02-04 22:43:56 +01:00
|
|
|
DISABLE_MAGIC_FUNCTIONS="false"
|
2020-10-05 18:36:42 +02:00
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# Uncomment the following line to disable auto-setting terminal title.
|
|
|
|
# DISABLE_AUTO_TITLE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to enable command auto-correction.
|
2020-10-05 18:36:42 +02:00
|
|
|
ENABLE_CORRECTION="false"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
|
|
|
COMPLETION_WAITING_DOTS="true"
|
|
|
|
|
|
|
|
# Uncomment the following line if you want to disable marking untracked files
|
|
|
|
# under VCS as dirty. This makes repository status check for large repositories
|
|
|
|
# much, much faster.
|
2020-03-01 02:46:50 +01:00
|
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Uncomment the following line if you want to change the command execution time
|
|
|
|
# stamp shown in the history command output.
|
|
|
|
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
2020-10-05 18:36:42 +02:00
|
|
|
export HIST_STAMPS="dd.mm.yyyy"
|
2019-11-19 01:21:43 +01:00
|
|
|
setopt share_history
|
|
|
|
setopt hist_ignore_dups
|
|
|
|
setopt hist_ignore_all_dups
|
|
|
|
setopt hist_save_no_dups
|
|
|
|
setopt hist_ignore_space
|
2020-10-05 18:36:42 +02:00
|
|
|
export HISTCONTROL=ignoredups:erasedups
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Would you like to use another custom folder than $ZSH/custom?
|
|
|
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
|
|
|
|
2021-05-03 02:32:40 +02:00
|
|
|
plugins=(asdf safe-paste docker dotnet firewalld fzf golang terraform torrent vagrant )
|
2019-04-29 00:37:34 +02:00
|
|
|
|
2019-05-02 01:13:32 +02:00
|
|
|
source $ZSH/oh-my-zsh.sh
|
2020-03-18 04:39:47 +01:00
|
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
|
2019-05-15 03:24:13 +02:00
|
|
|
|
2021-02-04 22:43:56 +01:00
|
|
|
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
|
2020-03-18 04:39:47 +01:00
|
|
|
ZSH_AUTOSUGGEST_USE_ASYNC=
|
2019-11-19 01:21:43 +01:00
|
|
|
|
2021-05-03 02:32:40 +02:00
|
|
|
ZSH_THEME_GIT_PROMPT_CACHE=" "
|
|
|
|
|
2019-05-15 03:24:13 +02:00
|
|
|
# map Del escape sequence to actual Del key in all (n,i) modes to resemble vim instead of vi
|
2020-01-20 05:31:44 +01:00
|
|
|
bindkey -a '^[[3~' delete-char
|
2019-11-19 01:21:43 +01:00
|
|
|
# map arrow up/down to control fish-like history substring search and highlighting
|
|
|
|
bindkey '^[[A' history-substring-search-up
|
|
|
|
bindkey '^[[B' history-substring-search-down
|
2020-01-20 05:31:44 +01:00
|
|
|
HISTORY_SUBSTRING_SEARCH_FUZZY=" "
|
2019-05-15 03:24:13 +02:00
|
|
|
|
2020-04-09 05:43:15 +02:00
|
|
|
# Use ~~ as the trigger sequence instead of the default **
|
|
|
|
export FZF_COMPLETION_TRIGGER='~~'
|
|
|
|
# Options to fzf command
|
|
|
|
export FZF_COMPLETION_OPTS='+c -x'
|
2021-05-03 02:32:40 +02:00
|
|
|
export FZF_DEFAULT_OPTS='--color fg:241,bg:235,hl:65,fg+:15,bg+:239,hl+:108 --color info:108,prompt:109,spinner:108,pointer:168,marker:168'
|
2020-04-09 05:43:15 +02:00
|
|
|
export FZF_DEFAULT_COMMAND="fzf --preview 'head -100 {}'"
|
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# User configuration
|
2020-10-05 18:36:42 +02:00
|
|
|
source ~/.dotenv
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# You may need to manually set your language environment
|
|
|
|
export LANG=en_GB.UTF-8
|
|
|
|
export http_proxy="http://localhost:8118"
|
|
|
|
|
2021-05-03 02:32:40 +02:00
|
|
|
if [ ! -S $HOME/.ssh/ssh_auth_sock ]; then
|
2020-06-11 23:02:44 +02:00
|
|
|
eval `ssh-agent` > /dev/null
|
2021-05-03 02:32:40 +02:00
|
|
|
ln -sf "$SSH_AUTH_SOCK" $HOME/.ssh/ssh_auth_sock
|
2020-06-11 23:02:44 +02:00
|
|
|
fi
|
2021-05-03 02:32:40 +02:00
|
|
|
export SSH_AUTH_SOCK=$HOME/.ssh/ssh_auth_sock
|
2020-04-27 22:57:54 +02:00
|
|
|
|
2020-06-11 23:02:44 +02:00
|
|
|
|
2020-04-27 22:57:54 +02:00
|
|
|
export EDITOR='vim'
|
|
|
|
export TERM='xterm-256color'
|
2019-04-29 00:37:34 +02:00
|
|
|
# export ARCHFLAGS="-arch x86_64"
|
2020-04-29 12:32:43 +02:00
|
|
|
export kee="surtur"
|
2021-05-03 02:32:40 +02:00
|
|
|
export SSH_KEY_PATH="$HOME/.ssh/$kee"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
2020-04-27 22:57:54 +02:00
|
|
|
eval $(TERM=xterm-256color dircolors)
|
2020-10-05 18:36:42 +02:00
|
|
|
alias ls='exa -al --group-directories-first'
|
2020-04-27 22:57:54 +02:00
|
|
|
alias grubup='sudo grub2-mkconfig -o /boot/grub2/grub.cfg'
|
2019-06-27 02:13:36 +02:00
|
|
|
alias am='sudo -i'
|
2019-05-02 01:13:32 +02:00
|
|
|
alias mv='mv -i'
|
|
|
|
alias cp='cp -i'
|
|
|
|
alias ln='ln -i'
|
|
|
|
alias free='free -m -l -t'
|
|
|
|
alias c='clear'
|
2019-05-15 03:24:13 +02:00
|
|
|
alias hs='history | grep -i'
|
2019-05-02 01:13:32 +02:00
|
|
|
alias grep='grep --color=auto'
|
|
|
|
alias egrep='egrep --color=auto'
|
|
|
|
alias fgrep='fgrep --color=auto'
|
2020-04-27 22:57:54 +02:00
|
|
|
alias neofetch='neofetch --disable "theme" "icons" packages de hostname cpu gpu resolution title'
|
2019-11-19 01:21:43 +01:00
|
|
|
#alias reth='sudo ethtool -r enp0s25' # ; ip link set enp0s25 down; ip link set enp0s25 up '
|
|
|
|
#alias rwlan='ip link set wlp3s0 down; ip link set wlp3s0 up'
|
2019-05-02 01:13:32 +02:00
|
|
|
alias wget='wget -c' # allows to restore progress after interruption
|
2020-04-27 22:57:54 +02:00
|
|
|
if [[ -z "$WAYLAND_DISPLAY" ]]; then alias vim='vimx';alias v='vimx'; else alias v='vim'; fi # life's too short to type "vim" every time in full
|
|
|
|
alias vimrc='vim ~/.vim/vimrc'
|
|
|
|
alias zshconfig="vim ~/.zshrc"
|
|
|
|
alias zshist="vim ~/.zsh_history"
|
2019-11-19 01:21:43 +01:00
|
|
|
alias alltheconfigs='alltheconfigs.sh'
|
|
|
|
alias agentssh="ssh-agent -s && ssh-add ~/.ssh/$kee" # add development key on demand
|
2019-05-15 03:24:13 +02:00
|
|
|
alias rsync-copy='rsync -avz --progress -h'
|
|
|
|
alias rsync-move='rsync -avz --progress -h --remove-source-files'
|
|
|
|
alias rsync-synchronize='rsync -avzu --delete --progress -h'
|
|
|
|
alias rsync-update='rsync -avzu --progress -h'
|
2020-04-27 22:57:54 +02:00
|
|
|
alias tmpdir='nutmp=$(mktemp -d);cd "$nutmp";unset nutmp'
|
2020-03-01 02:46:50 +01:00
|
|
|
alias wolm='wol d4:3d:7e:53:c2:b1'
|
|
|
|
alias ta='tmux a -t0'
|
2020-06-11 23:02:44 +02:00
|
|
|
alias dc='docker-compose'
|
|
|
|
alias urlencode='python2 -c "import urllib, sys; print urllib.quote_plus( sys.argv[1] if len(sys.argv) > 1 else sys.stdin.read()[0:-1], \"\")"'
|
|
|
|
alias urldecode='python2 -c "import urllib, sys; print urllib.unquote_plus(sys.argv[1] if len(sys.argv) > 1 else sys.stdin.read()[0:-1])"'
|
2021-05-03 02:52:38 +02:00
|
|
|
alias obs="QT_QPA_PLATFORM=xcb obs"
|
2019-05-02 01:13:32 +02:00
|
|
|
|
2019-12-10 02:12:09 +01:00
|
|
|
|
|
|
|
transfer() { if [ $# -eq 0 ]; then echo -e "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"; return 1; fi;tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://transfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "https://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; rm -f $tmpfile; }
|
2020-11-02 19:38:16 +01:00
|
|
|
info() { printf "\n%s %s\n\n" "$( date )" "$*" >&2; }
|
2021-02-04 22:43:56 +01:00
|
|
|
ix () { curl -n -F 'f:1=<-' http://ix.io 2>/dev/null ;}
|
2021-05-03 02:52:38 +02:00
|
|
|
viman() { text=$(man "$@") && echo "$text" | vim -R +":set ft=man nomod nonu noma nolist colorcolumn=" - ; }
|
2020-11-03 13:06:33 +01:00
|
|
|
upload() {
|
|
|
|
# inspired by https://www.alexander-pluhar.de/paste-file-host.html
|
|
|
|
# make eternity the default lifespan
|
|
|
|
FILE_LIFESPAN=${2:-e}
|
|
|
|
FILE_ID=$(base64 /dev/urandom | tr -d '/+' | dd bs=16 count=1 2>/dev/null)
|
|
|
|
|
2021-02-04 22:43:56 +01:00
|
|
|
rsync -auvP -4 $1 nebula:/var/www/htdocs/dotya.ml/files/$FILE_LIFESPAN/$FILE_ID-$1
|
2020-11-03 13:06:33 +01:00
|
|
|
|
|
|
|
FILE_URL="https://dotya.ml/files/$FILE_LIFESPAN/$FILE_ID-$1"
|
|
|
|
|
|
|
|
if [[ -z "$WAYLAND_DISPLAY" ]]; then
|
|
|
|
echo $FILE_URL | xclip -selection clipboard
|
|
|
|
echo $FILE_URL | xsel --clipboard --input
|
|
|
|
else
|
|
|
|
echo $FILE_URL | wl-copy
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo $FILE_URL
|
|
|
|
}
|
2021-02-10 23:27:34 +01:00
|
|
|
|