From bef00325cb5726f09d358344e7c23e3eab3d80ac Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 25 Feb 2021 09:33:51 +0100 Subject: Added zcompdup, xmonad, ipython and jupyter support for XDG dirs --- config/zsh/.zshrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config/zsh/.zshrc') diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index aef07dd..372b828 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -31,7 +31,9 @@ zstyle ':completion:*' menu select # menu like zstyle ':completion:*' matcher-list '' \ 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=*' 'r:|=* l:|=* r:|=*' # case insensitive zmodload zsh/complist -compinit +COMPFILE="$XDG_CACHE_HOME/zsh/zcompdup-$ZSH_VERSION" +mkdir -p "$(dirname "$COMPFILE")" +compinit -d "$COMPFILE" # _comp_options+=(globdots) # vim keybindings in tab completion menu (https://www.youtube.com/watch?v=eLEo4OQ-cuQ) -- cgit