Update .zshrc
This commit is contained in:
parent
bbe8959c26
commit
b273bd790b
18
.zshrc
18
.zshrc
@ -1,6 +1,8 @@
|
|||||||
# Dependancies You Need for this Config
|
# Dependancies You Need for this Config
|
||||||
# zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
|
# zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
|
||||||
# lf-bin - Binaries for LF in AUR
|
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
||||||
|
# zsh-autosuggestions - Suggestions based on your history
|
||||||
|
|
||||||
# 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 "
|
||||||
@ -17,21 +19,13 @@ zmodload zsh/complist
|
|||||||
compinit
|
compinit
|
||||||
_comp_options+=(globdots) # Include hidden files.
|
_comp_options+=(globdots) # Include hidden files.
|
||||||
|
|
||||||
# Use lf to switch directories and bind it to ctrl-o
|
# Custom ZSH Binds
|
||||||
lfcd () {
|
bindkey '^ ' autosuggest-accept
|
||||||
tmp="$(mktemp)"
|
|
||||||
lf -last-dir-path="$tmp" "$@"
|
|
||||||
if [ -f "$tmp" ]; then
|
|
||||||
dir="$(cat "$tmp")"
|
|
||||||
rm -f "$tmp"
|
|
||||||
[ -d "$dir" ] && [ "$dir" != "$(pwd)" ] && cd "$dir"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
bindkey -s '^o' 'lfcd\n'
|
|
||||||
|
|
||||||
# Load aliases and shortcuts if existent.
|
# Load aliases and shortcuts if existent.
|
||||||
[ -f "$HOME/.zsh/shortcutrc" ] && source "$HOME/.zsh/shortcutrc"
|
[ -f "$HOME/.zsh/shortcutrc" ] && source "$HOME/.zsh/shortcutrc"
|
||||||
[ -f "$HOME/.zsh/aliasrc" ] && source "$HOME/.zsh/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-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
||||||
|
Reference in New Issue
Block a user