Tidy up a bit
This commit is contained in:
parent
aa190f5fa8
commit
b636c92631
1 changed files with 2 additions and 13 deletions
|
@ -1,14 +1,12 @@
|
|||
# ~/.zshrc
|
||||
#
|
||||
|
||||
|
||||
stty stop undef # Disable ctrl-s to freeze terminal
|
||||
setopt interactivecomments # Add comments to command line as in Bash
|
||||
autoload -U colors && colors
|
||||
autoload -U colors && colors # Necessary for SPROMPT
|
||||
setopt correct
|
||||
export SPROMPT="Correct $fg[red]%R$reset_color to $fg[green]%r$reset_color? [Yes, No, Abort, Edit] "
|
||||
|
||||
|
||||
# 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.
|
||||
|
@ -16,15 +14,12 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
|
|||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||
fi
|
||||
|
||||
|
||||
# ALIASES
|
||||
[[ ! -f ~/.zsh_aliases ]] || source ~/.zsh_aliases
|
||||
|
||||
|
||||
# On Arch Linux, source pkgfile "command not found" hook
|
||||
[[ -e /usr/share/doc/pkgfile/command-not-found.zsh ]] && source /usr/share/doc/pkgfile/command-not-found.zsh
|
||||
|
||||
|
||||
# HISTORY SEARCH
|
||||
HISTSIZE=10000
|
||||
SAVEHIST=10000
|
||||
|
@ -36,7 +31,6 @@ zle -N down-line-or-beginning-search
|
|||
bindkey -M vicmd "k" up-line-or-beginning-search
|
||||
bindkey -M vicmd "j" down-line-or-beginning-search
|
||||
|
||||
|
||||
# COMPLETION
|
||||
autoload -Uz compinit
|
||||
zstyle ':completion:*' menu select
|
||||
|
@ -54,10 +48,8 @@ bindkey -M menuselect 'k' vi-up-line-or-history
|
|||
bindkey -M menuselect 'l' vi-forward-char
|
||||
bindkey -v '^?' backward-delete-char
|
||||
|
||||
|
||||
# VI MODE
|
||||
# Use 'jk' instead of Escape to switch to NORMAL mode:
|
||||
VIM_MODE_VICMD_KEY='jk'
|
||||
VIM_MODE_VICMD_KEY='jk' # Use 'jk' instead of Escape to switch to NORMAL mode:
|
||||
# Mode-sensitive cursor styling:
|
||||
MODE_CURSOR_VIINS="#cccccc blinking bar"
|
||||
MODE_CURSOR_VICMD="#cccccc block"
|
||||
|
@ -67,7 +59,6 @@ MODE_CURSOR_VLINE="$MODE_CURSOR_VISUAL #00ffff"
|
|||
# Finally load the vim plugin:
|
||||
source "$HOME/github_dotfiles/zsh-vim-mode/zsh-vim-mode.plugin.zsh"
|
||||
|
||||
|
||||
# HELP COMMAND
|
||||
# By default in zsh, run-help is an alias to man, which is useless.
|
||||
# Here we load the zsh run-help function and name it help, just like in bash.
|
||||
|
@ -77,13 +68,11 @@ fi
|
|||
autoload -Uz run-help
|
||||
alias help=run-help
|
||||
|
||||
|
||||
# PROMPT
|
||||
source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
|
||||
|
||||
# SYNTAX HIGHLIGHTING AND AUTOSUGGESTIONS
|
||||
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
# The following line MUST be at the end of this file!
|
||||
|
|
Loading…
Add table
Reference in a new issue