Fixed some keys and the PS1 prompt

This commit is contained in:
2024-08-14 09:36:57 +02:00
parent cf2e7cf9e5
commit c863538da9

View File

@ -2,10 +2,19 @@ source "$ZDOTDIR/history.zsh"
source "$ZDOTDIR/alias.zsh" source "$ZDOTDIR/alias.zsh"
source "$ZDOTDIR/plugins.zsh" source "$ZDOTDIR/plugins.zsh"
# Set the initial prompt
PS1="%F{38}[%n@%m %F{45}%B%~%b%f%F{38}]%f$ "
# Bind Ctrl-left/right arrow to move back/formward one word # Bind Ctrl-left/right arrow to move back/formward one word
# https://unix.stackexchange.com/a/140499 # https://unix.stackexchange.com/a/140499
#
# Bind Canc, Home and End to the right functions
# https://stackoverflow.com/a/8645267
bindkey "^[[1;5C" forward-word bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word bindkey "^[[1;5D" backward-word
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "^[[3~" delete-char
# Enable the autocompletion and make it case insensitive # Enable the autocompletion and make it case insensitive
# https://superuser.com/a/1092328 # https://superuser.com/a/1092328
@ -16,3 +25,6 @@ zstyle ":completion:*" matcher-list "m:{a-z}={A-Za-z}"
# https://unix.stackexchange.com/a/447002 # https://unix.stackexchange.com/a/447002
eval "$(dircolors)" eval "$(dircolors)"
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
eval "$(fzf --zsh)"
eval "$(zoxide init --cmd cd zsh)"