95 lines
2.6 KiB
Bash
95 lines
2.6 KiB
Bash
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
|
# 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
|
|
|
|
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
|
|
|
|
export LANG=de_DE.UTF-8
|
|
export EDITOR="nvim"
|
|
export SUDO_EDITOR="nvim"
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
|
|
# set PATH so it includes user's private ~/.local/bin if it exists
|
|
if [ -d "$HOME/.local/bin" ] ; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
|
|
HISTFILE=~/.histfile
|
|
HISTSIZE=1000
|
|
SAVEHIST=1000
|
|
|
|
TERM_ID=(ps -o 'ppid=' -p $$)
|
|
TERM_NAME=(ps -o 'cmd=' -p $TERM_ID)
|
|
if [[ "$TERM_NAME" = "kitty" ]]; then
|
|
alias ssh="kitty +kitten ssh"
|
|
else
|
|
alias ssh="TERM=xterm-256color ssh"
|
|
fi
|
|
alias l="lsd -l --group-dirs first --size short --config-file ~/.config/lsd/config.yaml"
|
|
alias ls="lsd"
|
|
alias orphans='[[ -n $(pacman -Qdt) ]] && sudo pacman -Rs $(pacman -Qdtq) || echo "no orphans to remove"'
|
|
#alias web=""
|
|
|
|
web() {
|
|
xdg-open "https://search.moonarch.de/search?q=$@"
|
|
}
|
|
|
|
f() {
|
|
fff "$@"
|
|
cd "$(cat "${XDG_CACHE_HOME:=${HOME}/.cache}/fff/.fff_d")"
|
|
}
|
|
|
|
bindkey "^[[3~" delete-char
|
|
bindkey "^[[H" beginning-of-line
|
|
bindkey "^[[F" end-of-line
|
|
bindkey "^[[1;5C" forward-word
|
|
bindkey "^[[1;5D" backward-word
|
|
|
|
|
|
|
|
|
|
plugins=(zsh-interactive-cd git aliases docker archlinux sudo vscode)
|
|
|
|
|
|
|
|
# autoload -Uz compinit vcs_info promptinit colors && colors
|
|
# compinit
|
|
# promptinit
|
|
|
|
# # This will set the default prompt theme
|
|
# prompt redhat
|
|
|
|
# # git info
|
|
# precmd_vcs_info() { vcs_info }
|
|
# precmd_functions+=( precmd_vcs_info )
|
|
# setopt prompt_subst
|
|
# RPROMPT='${vcs_info_msg_0_}'
|
|
# # PROMPT='${vcs_info_msg_0_}%# '
|
|
# zstyle ':vcs_info:git:*' formats '%b'
|
|
|
|
# PS1="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%(5~|%-1~/.../%3~|%4~) %{$reset_color%}%% "
|
|
|
|
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
source /usr/share/oh-my-zsh/oh-my-zsh.sh
|
|
source $HOME/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel10k.zsh-theme
|
|
source $HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
source $HOME/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
|
|
eval "$(fzf --zsh)"
|