surtur
d2a75221e8
* zplug-managed zplug * zplug load defers * spaceship prompt items explicit definition * spaceship prompt color change * ohmyzsh update time change * specify histcontrol format * add asdf - the extendable version manager * add exa --> ls alias
212 lines
8.4 KiB
Bash
212 lines
8.4 KiB
Bash
# If you come from bash you might have to change your $PATH.
|
|
source ~/.zplug/init.zsh
|
|
zplug "denysdovhan/spaceship-prompt", use:spaceship.zsh, from:github, as:theme
|
|
zplug "zsh-users/zsh-autosuggestions", defer:2
|
|
#zplug "zsh-users/zsh-syntax-highlighting"
|
|
zplug "zdharma/fast-syntax-highlighting", defer:2
|
|
zplug "zsh-users/zsh-history-substring-search", defer:2
|
|
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
|
|
# zplug "arzzen/calc.plugin.zsh", defer:2
|
|
zplug 'zplug/zplug', hook-build:'zplug --self-manage'
|
|
|
|
# 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
|
|
# zplug load
|
|
source ~/.zplug/repos/zsh-users/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
#source ~/.zplug/repos/zsh-users/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
source ~/.zplug/repos/zdharma/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh
|
|
source ~/.zplug/repos/zsh-users/zsh-history-substring-search/zsh-history-substring-search.zsh
|
|
source ~/.zplug/repos/robbyrussell/oh-my-zsh/plugins/git/git.plugin.zsh
|
|
source ~/.zplug/repos/robbyrussell/oh-my-zsh/plugins/gitignore/gitignore.plugin.zsh
|
|
source ~/.zplug/repos/robbyrussell/oh-my-zsh/plugins/systemd/systemd.plugin.zsh
|
|
source ~/.zplug/repos/robbyrussell/oh-my-zsh/plugins/dnf/dnf.plugin.zsh
|
|
#source ~/.zplug/repos/arzzen/calc.plugin.zsh/calc.plugin.zsh
|
|
|
|
ZSH_THEME="spaceship"
|
|
SPACESHIP_PROMPT_ORDER=(time user dir host git package node ruby golang php rust haskell docker venv pyenv dotnet exec_time line_sep battery jobs exit_code char)
|
|
SPACESHIP_PROMPT_ADD_NEWLINE=false
|
|
SPACESHIP_PROMPT_SEPARATE_LINE=true
|
|
|
|
SPACESHIP_DIR_PREFIX=
|
|
SPACESHIP_DIR_COLOR=blue
|
|
#SPACESHIP_DIR_TRUNC=3
|
|
SPACESHIP_DIR_TRUNC_REPO=false
|
|
SPACESHIP_HOST_SHOW=true
|
|
SPACESHIP_HOST_PREFIX="@"
|
|
SPACESHIP_HOST_COLOR=green
|
|
SPACESHIP_GIT_BRANCH_COLOR=red
|
|
SPACESHIP_GIT_STATUS_COLOR=yellow
|
|
SPACESHIP_BATTERY_SHOW=true
|
|
SPACESHIP_BATTERY_THRESHOLD=35
|
|
#SPACESHIP_CHAR_SYMBOL=\>
|
|
SPACESHIP_CHAR_COLOR_SUCCESS=green
|
|
#SPACESHIP_CHAR_SUFFIX=""
|
|
|
|
# Path to your oh-my-zsh installation.
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
#ZSH_THEME="myowntheme_with_time"
|
|
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
|
|
|
# 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"
|
|
|
|
# Uncomment the following line to automatically update without prompting.
|
|
DISABLE_UPDATE_PROMPT="true"
|
|
|
|
# Uncomment the following line to change how often to auto-update (in days).
|
|
export UPDATE_ZSH_DAYS=3
|
|
|
|
# Uncomment the following line to disable colors in ls.
|
|
# DISABLE_LS_COLORS="true"
|
|
|
|
DISABLE_MAGIC_FUNCTIONS=false
|
|
|
|
# Uncomment the following line to disable auto-setting terminal title.
|
|
# DISABLE_AUTO_TITLE="true"
|
|
|
|
# Uncomment the following line to enable command auto-correction.
|
|
ENABLE_CORRECTION="false"
|
|
|
|
# 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.
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|
|
|
# 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"
|
|
export HIST_STAMPS="dd.mm.yyyy"
|
|
setopt share_history
|
|
setopt hist_ignore_dups
|
|
setopt hist_ignore_all_dups
|
|
setopt hist_save_no_dups
|
|
setopt hist_ignore_space
|
|
export HISTCONTROL=ignoredups:erasedups
|
|
|
|
# Would you like to use another custom folder than $ZSH/custom?
|
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
|
|
|
plugins=(safe-paste docker yarn fzf)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
|
|
|
|
ZSH_AUTOSUGGEST_STRATEGY=(history)
|
|
ZSH_AUTOSUGGEST_USE_ASYNC=
|
|
|
|
# map Del escape sequence to actual Del key in all (n,i) modes to resemble vim instead of vi
|
|
bindkey -a '^[[3~' delete-char
|
|
# 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
|
|
HISTORY_SUBSTRING_SEARCH_FUZZY=" "
|
|
|
|
# Use ~~ as the trigger sequence instead of the default **
|
|
export FZF_COMPLETION_TRIGGER='~~'
|
|
# Options to fzf command
|
|
export FZF_COMPLETION_OPTS='+c -x'
|
|
export FZF_DEFAULT_COMMAND="fzf --preview 'head -100 {}'"
|
|
|
|
# User configuration
|
|
source ~/.asdf/asdf.sh
|
|
# append completions to fpath
|
|
fpath=(${ASDF_DIR}/completions $fpath)
|
|
# initialise completions with ZSH's compinit
|
|
autoload -Uz compinit
|
|
compinit
|
|
source ~/.dotenv
|
|
export PATH="$HOME/.local/bin:$HOME/utils/bin:$HOME/.cargo/bin:$GOPATH/bin:$PATH"
|
|
|
|
# You may need to manually set your language environment
|
|
export LANG=en_GB.UTF-8
|
|
export http_proxy="http://localhost:8118"
|
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
|
|
|
if [ ! -S ~/.ssh/ssh_auth_sock ]; then
|
|
eval `ssh-agent` > /dev/null
|
|
ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock
|
|
fi
|
|
export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock
|
|
|
|
if [ -n "$DESKTOP_SESSION" ];then
|
|
eval $(gnome-keyring-daemon --start)
|
|
export SSH_AUTH_SOCK
|
|
fi
|
|
|
|
|
|
export EDITOR='vim'
|
|
export TERM='xterm-256color'
|
|
# export ARCHFLAGS="-arch x86_64"
|
|
export kee="surtur"
|
|
export SSH_KEY_PATH="~/.ssh/$kee"
|
|
|
|
eval $(TERM=xterm-256color dircolors)
|
|
alias ls='exa -al --group-directories-first'
|
|
alias grubup='sudo grub2-mkconfig -o /boot/grub2/grub.cfg'
|
|
alias am='sudo -i'
|
|
alias mv='mv -i'
|
|
alias cp='cp -i'
|
|
alias ln='ln -i'
|
|
alias free='free -m -l -t'
|
|
alias c='clear'
|
|
alias hs='history | grep -i'
|
|
alias grep='grep --color=auto'
|
|
alias egrep='egrep --color=auto'
|
|
alias fgrep='fgrep --color=auto'
|
|
alias neofetch='neofetch --disable "theme" "icons" packages de hostname cpu gpu resolution title'
|
|
#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'
|
|
alias wget='wget -c' # allows to restore progress after interruption
|
|
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"
|
|
alias alltheconfigs='alltheconfigs.sh'
|
|
alias agentssh="ssh-agent -s && ssh-add ~/.ssh/$kee" # add development key on demand
|
|
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'
|
|
alias tmpdir='nutmp=$(mktemp -d);cd "$nutmp";unset nutmp'
|
|
alias wolm='wol d4:3d:7e:53:c2:b1'
|
|
alias ta='tmux a -t0'
|
|
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])"'
|
|
|
|
export ANDROID_HOME=$HOME/utils/Android/Sdk
|
|
export PATH=$PATH:$ANDROID_HOME/tools
|
|
export PATH=$PATH:$ANDROID_HOME/platform-tools
|
|
export ANDROID_SDK_ROOT=$ANDROID_HOME
|
|
export ANDROID_SDK_PATH=$ANDROID_HOME
|
|
export ANDROID_NDK_PATH=$ANDROID_HOME/ndk-bundle
|
|
export WORKON_HOME=~/utils/venv
|
|
#source utils/venv/bin/activate
|
|
export PIP_VIRTUALENV_BASE=~/utils/venv
|
|
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1 # why do I always have to take care of this myself...
|
|
export MOZ_USE_XINPUT2=1
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
#bindkey -v # enabled ohmyzsh vi-mode - more customizable than the original
|
|
|
|
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; }
|