shellskripte/configs/zshrc

149 lines
3.7 KiB
Bash

##################### Powerlevel10k ###################
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# Set the directory we want to store zinit and plugins
ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git"
# Download Zinit, if it's not there yet
if [ ! -d "$ZINIT_HOME" ]; then
mkdir -p "$(dirname $ZINIT_HOME)"
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
fi
# Source/Load zinit
source "${ZINIT_HOME}/zinit.zsh"
zinit ice depth=1; zinit light romkatv/powerlevel10k
# Add in zsh plugins
zinit light zsh-users/zsh-syntax-highlighting
zinit light zsh-users/zsh-completions
zinit light zsh-users/zsh-autosuggestions
zinit light Aloxaf/fzf-tab
# Add in snippets
zinit snippet OMZP::git
zinit snippet OMZP::sudo
zinit snippet OMZP::archlinux
zinit snippet OMZP::aws
zinit snippet OMZP::kubectl
zinit snippet OMZP::kubectx
zinit snippet OMZP::command-not-found
# Load completions
autoload -Uz compinit && compinit
zinit cdreplay -q
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# Keybindings
bindkey -e
bindkey '^p' history-search-backward
bindkey '^n' history-search-forward
bindkey '^[w' kill-region
# History
HISTSIZE=5000
HISTFILE=~/.zsh_history
SAVEHIST=$HISTSIZE
HISTDUP=erase
setopt appendhistory
setopt sharehistory
setopt hist_ignore_space
setopt hist_ignore_all_dups
setopt hist_save_no_dups
setopt hist_ignore_dups
setopt hist_find_no_dups
# Completion styling
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
zstyle ':completion:*' menu no
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'ls --color $realpath'
zstyle ':fzf-tab:complete:__zoxide_z:*' fzf-preview 'ls --color $realpath'
####################### Aliases ###################
alias ls='ls --color'
alias vim='nvim'
alias c='clear'
alias s001='ssh klaas@s001'
alias s002='ssh klaas@s002.boergmann.it'
alias s003='ssh harald@klaas-boergmann.de'
###################### eigene Funktionen ############
# Make dir and enter
mkcdir()
{
mkdir -p -- "$1" &&
cd -P -- "$1"
}
export DOTNET_CLI_TELEMETRY_OUTPUT=1
export EDITOR=/usr/local/bin/nvim
export VISUAL=/usr/local/bin/nvim
export SUDO_EDITOR=/usr/local/bin/nvim
alias doch='sudo $(fc -ln -1)'
###################### Ruby #########################
export PATH="$PATH:$HOME/.rubies/ruby-3.3.4/bin:$HOME/.local/share/gem/ruby/3.3.0/bin"
###################### Node ########################
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # this loads nvm
# Shell integrations
# eval "$(fzf --zsh)"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
eval $(thefuck --alias)
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools
# newgit
# legt neues Repository an und pusht zu Server
newgit()
{
mkcdir "$1" &&
git init &&
git checkout -b main &&
touch README.md &&
git add . &&
git commit -a -m "initial commit" &&
git remote add origin https://git.boergmann.it/klaas/"$1".git &&
git push -u origin main
}
fframes()
{
mkdir "$1"
ffmpeg -i "$1".mp4 "$1"/%03d.jpg
}
gitclone()
{
git clone https://git.boergmann.it/klaas/"$1".git &&
cd "$1"
}
typeset -g POWERLEVEL9K_INSTANT_PROMPT=quiet
PATH=~/.console-ninja/.bin:$PATH
alias get_idf='. $HOME/esp/esp-idf/export.sh'