mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
zsh: replace rupa/z with agkozak/zsh-z
zsh-z is a zsh-native plugin which can be installed with antigen. It is a drop-in replacement and does the same thing, but with less management overhead. Set _Z_DATA to be in $XDG_DATA_HOME to un-clutter ~ a little more Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
parent
5e0354953d
commit
3146286804
@ -23,6 +23,8 @@ export MANPAGER="less -+N"
|
|||||||
export SYSTEMD_PAGER="less $LESS"
|
export SYSTEMD_PAGER="less $LESS"
|
||||||
# Disable histfile
|
# Disable histfile
|
||||||
export LESSHISTFILE=-
|
export LESSHISTFILE=-
|
||||||
|
# Use .local/share for z instead of ~/.z
|
||||||
|
export _Z_DATA="$XDG_DATA_HOME/z"
|
||||||
|
|
||||||
if exists tput; then
|
if exists tput; then
|
||||||
export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green
|
export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green
|
||||||
@ -72,6 +74,7 @@ antigen bundle zsh-users/zsh-completions
|
|||||||
antigen bundle zsh-users/zsh-autosuggestions
|
antigen bundle zsh-users/zsh-autosuggestions
|
||||||
antigen bundle zsh-users/zsh-syntax-highlighting@feature/redrawhook
|
antigen bundle zsh-users/zsh-syntax-highlighting@feature/redrawhook
|
||||||
antigen bundle mafredri/zsh-async
|
antigen bundle mafredri/zsh-async
|
||||||
|
antigen bundle agkozak/zsh-z
|
||||||
|
|
||||||
antigen apply
|
antigen apply
|
||||||
|
|
||||||
@ -163,7 +166,6 @@ source "$ZSH_DIR/plugins/fish-theme.zsh"
|
|||||||
source "$ZSH_DIR/plugins/git-rprompt.zsh"
|
source "$ZSH_DIR/plugins/git-rprompt.zsh"
|
||||||
[ -f '/usr/share/fzf/key-bindings.zsh' ] && source /usr/share/fzf/key-bindings.zsh
|
[ -f '/usr/share/fzf/key-bindings.zsh' ] && source /usr/share/fzf/key-bindings.zsh
|
||||||
[ -f '/usr/share/doc/pkgfile/command-not-found.zsh' ] && source /usr/share/doc/pkgfile/command-not-found.zsh
|
[ -f '/usr/share/doc/pkgfile/command-not-found.zsh' ] && source /usr/share/doc/pkgfile/command-not-found.zsh
|
||||||
[ -r '/usr/share/z/z.sh' ] && source /usr/share/z/z.sh
|
|
||||||
|
|
||||||
# Completion initialisation
|
# Completion initialisation
|
||||||
autoload -U compinit bashcompinit
|
autoload -U compinit bashcompinit
|
||||||
|
Loading…
Reference in New Issue
Block a user