Update .zshrc
This commit is contained in:
parent
1e6a4e07b6
commit
edfcb5c7cc
13
.zshrc
13
.zshrc
@ -3,10 +3,21 @@
|
|||||||
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
||||||
# zsh-autosuggestions - Suggestions based on your history
|
# zsh-autosuggestions - Suggestions based on your history
|
||||||
|
|
||||||
|
# Initial Setup
|
||||||
|
# mkdir -p "$HOME/.zsh"
|
||||||
|
# git clone https://github.com/sindresorhus/pure.git "$HOME/.zsh/pure"
|
||||||
|
# Setup Alias in $HOME/.zsh/aliasrc
|
||||||
|
|
||||||
# Enable colors and change prompt:
|
# Enable colors and change prompt:
|
||||||
autoload -U colors && colors
|
autoload -U colors && colors
|
||||||
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
|
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
|
||||||
|
|
||||||
|
|
||||||
|
# Pure Prompt
|
||||||
|
fpath+=$HOME/.zsh/pure
|
||||||
|
autoload -U promptinit; promptinit
|
||||||
|
prompt pure
|
||||||
|
|
||||||
# History in cache directory:
|
# History in cache directory:
|
||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
@ -23,7 +34,7 @@ _comp_options+=(globdots) # Include hidden files.
|
|||||||
bindkey '^ ' autosuggest-accept
|
bindkey '^ ' autosuggest-accept
|
||||||
|
|
||||||
# Load aliases and shortcuts if existent.
|
# Load aliases and shortcuts if existent.
|
||||||
[ -f "$HOME/aliasrc" ] && source "$HOME/aliasrc"
|
[ -f "$HOME/.zsh/aliasrc" ] && source "$HOME/.zsh/aliasrc"
|
||||||
|
|
||||||
# Load ; should be last.
|
# Load ; should be last.
|
||||||
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
||||||
|
Reference in New Issue
Block a user