Starting fresh with zshrc. Need to include (parts of) old customs.

This commit is contained in:
Joachim Nielandt 2023-05-07 09:43:50 +02:00
parent dd89164dee
commit 5b7381e682

View File

@ -2,106 +2,91 @@
# Initialization code that may require console input (password prompts, [y/n] # Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below. # 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 if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
#source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi fi
# Finally, source custom scripts that are global for zsh. These are useful to override things from powerlevel10k, # ZSH setup
# oh-my-zsh, ... # Uncomment the following line to disable bi-weekly auto-update checks.
for file in ~/.dotfiles/zsh/custom/*.zsh; do # DISABLE_AUTO_UPDATE="true"
source "$file" # Uncomment the following line if pasting URLs and other text is messed up.
done # DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"
# Path to your oh-my-zsh installation. # Path to your oh-my-zsh installation.
# WSL2 would be Ubuntu, ohmyzsh is installed in userfolder # WSL2 would be Ubuntu, ohmyzsh is installed in userfolder
{{ if or (contains "WSL2" .chezmoi.kernel.osrelease) (contains "microsoft-standard" .chezmoi.kernel.osrelease) }} {{ if or (contains "WSL2" .chezmoi.kernel.osrelease) (contains "microsoft-standard" .chezmoi.kernel.osrelease) }}
ZSH=~/.oh-my-zsh/ ZSH=~/.oh-my-zsh/
{{ else }} {{ else }}
ZSH=/usr/share/oh-my-zsh/ ZSH=/usr/share/oh-my-zsh/
{{ end }} {{ end }}
# Set name of the theme to load --- if set to "random", it will # Lines configured by zsh-newuser-install
# load a random theme each time oh-my-zsh is loaded, in which case, HISTFILE=~/.histfile
# to know which specific one was loaded, run: echo $RANDOM_THEME HISTSIZE=1000
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes SAVEHIST=1000
ZSH_THEME="powerlevel10k" # use invalid command as a directory if applicable and cd to it
setopt autocd
# Treat the #, ~ and ^ characters as part of patterns for filename generation, etc. (An initial unquoted ~ always produces named directory expansion.)
setopt extendedglob
# If a pattern for filename generation has no matches, print an error, instead of leaving it unchanged in the argument list. This also applies to file expansion of an initial ~ or =.
setopt nomatch
# Report the status of background jobs immediately, rather than waiting until just before printing a prompt.
setopt notify
# Beep on error
unsetopt beep
bindkey -v
# must be after -v
# enable backwards search with ctrl-r
bindkey '^R' history-incremental-search-backward
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/joachim/.zshrc'
# Set list of themes to pick from when loading at random autoload -Uz compinit
# Setting this variable when ZSH_THEME=random will cause zsh to load compinit
# a theme from this variable instead of looking in $ZSH/themes/ # End of lines added by compinstall
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
# Uncomment the following line to use case-sensitive completion. # load zgenom
# CASE_SENSITIVE="true" source "${HOME}/.zgenom/zgenom.zsh"
# Uncomment the following line to use hyphen-insensitive completion. # Check for plugin and zgenom updates every 7 days
# Case-sensitive completion must be off. _ and - will be interchangeable. # This does not increase the startup time.
# HYPHEN_INSENSITIVE="true" zgenom autoupdate
# Uncomment the following line to disable bi-weekly auto-update checks. # if the init script doesn't exist
DISABLE_AUTO_UPDATE="true" if ! zgenom saved; then
# Uncomment the following line to automatically update without prompting. # specify plugins here
# DISABLE_UPDATE_PROMPT="true" zgenom ohmyzsh plugins/git
zgenom ohmyzsh plugins/sudo zgenom ohmyzsh
# Uncomment the following line to change how often to auto-update (in days). zgenom load zsh-users/zsh-syntax-highlighting
# export UPDATE_ZSH_DAYS=13
# Uncomment the following line if pasting URLs and other text is messed up. # load powerlevel10k
# DISABLE_MAGIC_FUNCTIONS="true" zgenom load romkatv/powerlevel10k powerlevel10k
# Uncomment the following line to disable colors in ls. # This ZSH plugin enables using fzf to search your command history and do file searches.
# DISABLE_LS_COLORS="true" zgenom load unixorn/fzf-zsh-plugin
# Uncomment the following line to disable auto-setting terminal title. # generate the init script from plugins above
# DISABLE_AUTO_TITLE="true" zgenom save
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# 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.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
# HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
ZSH_CUSTOM=$HOME/.config/oh-my-zsh/custom/
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
if [[ ! -d $ZSH_CACHE_DIR ]]; then
mkdir $ZSH_CACHE_DIR
fi fi
source $ZSH/oh-my-zsh.sh # this supposedly fixes the slow pasting into shell
# zstyle ':bracketed-paste-magic' active-widgets '.self-*'
# don't think i'm using this, could be nice place to put machine-local stuff
[ -f ~/.zshrc.local ] && source ~/.zshrc.local
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
# If we're in graphical environment, run full flavour. Otherwise, 8-bit ASCII. # If we're in graphical environment, run full flavour. Otherwise, 8-bit ASCII.
if [[ -n $DISPLAY ]]; then #if [[ -n $DISPLAY ]]; then
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh # [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
else #else
[[ ! -f ~/.p10k.console.zsh ]] || source ~/.p10k.console.zsh # [[ ! -f ~/.p10k.console.zsh ]] || source ~/.p10k.console.zsh
fi #fi
# this supposedly fixes the slow pasting into shell # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
zstyle ':bracketed-paste-magic' active-widgets '.self-*' [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh