Update ZSH rc configuration file to version 8.0.1.27.
This commit is contained in:
parent
98acf812fd
commit
8075eff000
@ -4,7 +4,7 @@
|
|||||||
# Copyright 2022-2023 Jake Winters
|
# Copyright 2022-2023 Jake Winters
|
||||||
# SPDX-License-Identifier: BSD-3-Clause-Clear
|
# SPDX-License-Identifier: BSD-3-Clause-Clear
|
||||||
|
|
||||||
# Version: 8.0.0.26
|
# Version: 8.0.1.27
|
||||||
|
|
||||||
|
|
||||||
# Prompt
|
# Prompt
|
||||||
@ -22,7 +22,7 @@ bindkey "^[[H" beginning-of-line
|
|||||||
bindkey "^[[F" end-of-line
|
bindkey "^[[F" end-of-line
|
||||||
|
|
||||||
# zstyle
|
# zstyle
|
||||||
zstyle :compinstall filename '~/.zshrc'
|
zstyle :compinstall filename '$HOME/.zshrc'
|
||||||
zstyle ':completion:*' menu select
|
zstyle ':completion:*' menu select
|
||||||
zstyle ':vcs_info:git:*' formats '%r%f (%b)'
|
zstyle ':vcs_info:git:*' formats '%r%f (%b)'
|
||||||
zstyle ':vcs_info:*' enable git
|
zstyle ':vcs_info:*' enable git
|
||||||
@ -35,7 +35,7 @@ precmd_vcs_info() { vcs_info }
|
|||||||
precmd_functions+=( precmd_vcs_info )
|
precmd_functions+=( precmd_vcs_info )
|
||||||
|
|
||||||
# History
|
# History
|
||||||
HISTFILE=~/.zsh-history
|
HISTFILE=$HOME/.zsh-history
|
||||||
HISTSIZE=1024
|
HISTSIZE=1024
|
||||||
SAVEHIST=1024
|
SAVEHIST=1024
|
||||||
|
|
||||||
@ -50,12 +50,12 @@ fi
|
|||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
## Global
|
## Global
|
||||||
if [[ -f ~/.zsh-alias-global ]]; then
|
if [[ -f $HOME/.zsh-alias-global ]]; then
|
||||||
. ~/.zsh-alias-global
|
. $HOME/.zsh-alias-global
|
||||||
fi
|
fi
|
||||||
## User
|
## User
|
||||||
if [[ -f ~/.zsh-alias-user ]]; then
|
if [[ -f $HOME/.zsh-alias-user ]]; then
|
||||||
. ~/.zsh-alias-user
|
. $HOME/.zsh-alias-user
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# fzf
|
# fzf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user