feat: common zshconfig; fix: hyprland config multimonitors

This commit is contained in:
2026-01-22 09:20:42 -08:00
parent bf0df4bd72
commit 17cce8108e
2 changed files with 28 additions and 6 deletions

20
.zshrc Normal file
View File

@@ -0,0 +1,20 @@
# Auto Complete
autoload -Uz compinit
compinit
# Alias
alias vim='nvim'
# Config
source <(fzf --zsh)
autoload -Uz vcs_info
precmd_vcs_info() { vcs_info }
precmd_functions+=( precmd_vcs_info )
setopt prompt_subst
RPROMPT='${vcs_info_msg_0_}'
#PROMPT='${vcs_info_msg_0_}%# '
PROMPT='%~%# '
zstyle ':vcs_info:git:*' formats '%b'