Chunk & Split zshrc into smaller files
This commit is contained in:
parent
1314b22f27
commit
7fd48fb729
5 changed files with 57 additions and 51 deletions
14
.config/zsh/plugins.sh
Normal file
14
.config/zsh/plugins.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
source "$CONFIGDIR/zsh/plugins/zsh-git-prompt/zshrc.sh"
|
||||
source "$CONFIGDIR/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||
source "$CONFIGDIR/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"
|
||||
|
||||
# Autocomplete
|
||||
ZSH_AUTOSUGGEST_USE_ASYNC=true
|
||||
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
|
||||
|
||||
# Prompt
|
||||
precmd() {
|
||||
PROMPT="[%c] "
|
||||
RPROMPT="$(git_super_status)"
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue