repo: Add XDG user dirs config + Update zsh hashes

Create named directories to every visible folder in $HOME for greater
portability.
Set the CDABLE_VARS zsh option.
This commit is contained in:
2020-11-03 15:11:30 +01:00
parent d0aa4ea65b
commit ddb2114a87
3 changed files with 39 additions and 14 deletions

View File

@@ -37,6 +37,7 @@ setopt AUTO_PUSHD # Make cd push the old directory onto the direct
setopt NO_AUTO_REMOVE_SLASH # Keeps trailing slash for directories when auto completing.
# (Beware: commands will act on the target directory not the symlink with the slash)
setopt NO_BEEP # Do not beep on error in ZLE.
setopt CDABLE_VARS # Expand named directories without leading '~'.
setopt C_BASES # Output hexadecimal numbers in the standard C format ('16#FF' -> '0xFF').
setopt CHASE_LINKS # Resolve symbolic links to their true values when changing directory.
setopt NO_CLOBBER # '>!' or '>|' must be used to truncate a file, and '>>!' or '>>|' to create a file.