feat(zsh): configure autocd and cdpath

This commit is contained in:
Oliver Davies 2022-09-24 10:15:23 +01:00
parent aad6001ccd
commit 2c4e616026

View file

@ -188,6 +188,13 @@
enableCompletion = false;
dotDir = ".config/zsh";
autocd = true;
cdpath = [
"$HOME/Code"
"$HOME/Code/*"
"$HOME"
];
initExtra = ''
# Case insensitive autocompletion.
zstyle ":completion:*" matcher-list "" "m:{a-zA-Z}={A-Za-z}" "r:|=*" "l:|=* r:|=*"