Compare commits
2 Commits
5b7381e682
...
a36c80eb72
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a36c80eb72 | ||
|
|
e793e78c72 |
@ -5,7 +5,7 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
|
||||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||
fi
|
||||
|
||||
# ZSH setup
|
||||
# To check
|
||||
# Uncomment the following line to disable bi-weekly auto-update checks.
|
||||
# DISABLE_AUTO_UPDATE="true"
|
||||
# Uncomment the following line if pasting URLs and other text is messed up.
|
||||
@ -25,11 +25,13 @@ ZSH=~/.oh-my-zsh/
|
||||
ZSH=/usr/share/oh-my-zsh/
|
||||
{{ end }}
|
||||
|
||||
# Lines configured by zsh-newuser-install
|
||||
# Zsh history
|
||||
HISTFILE=~/.histfile
|
||||
HISTSIZE=1000
|
||||
SAVEHIST=1000
|
||||
# use invalid command as a directory if applicable and cd to it
|
||||
SAVEHIST=10000
|
||||
|
||||
# Zsh options
|
||||
# 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
|
||||
@ -39,7 +41,11 @@ setopt nomatch
|
||||
setopt notify
|
||||
# Beep on error
|
||||
unsetopt beep
|
||||
|
||||
# Bindings
|
||||
bindkey -v
|
||||
# This fixed "can't backspace after switching from normal to insert mode"
|
||||
bindkey -v '^?' backward-delete-char
|
||||
# must be after -v
|
||||
# enable backwards search with ctrl-r
|
||||
bindkey '^R' history-incremental-search-backward
|
||||
@ -77,6 +83,8 @@ if ! zgenom saved; then
|
||||
zgenom save
|
||||
fi
|
||||
|
||||
|
||||
|
||||
# this supposedly fixes the slow pasting into shell
|
||||
# zstyle ':bracketed-paste-magic' active-widgets '.self-*'
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user