Allow auto-complete with aliases

This commit is contained in:
agryphus 2023-10-25 19:56:13 -04:00
parent 788af77a14
commit c061646f9b

View file

@ -2,6 +2,7 @@
unsetopt autocd # Change directory just by typing its name (hurts performance)
setopt interactivecomments # Allow comments in interactive mode
setopt complete_aliases # Allows auto-completion with aliases
setopt magicequalsubst # Enable filename expansion for arguments of the form anything=expression
setopt nonomatch # Hide error message if there is no match for the pattern
setopt notify # Report the status of background jobs immediately
@ -29,6 +30,7 @@ if [ ! -z "$(grep nixos /etc/os-release)" ]; then
fi
export PATH=sourced:$PATH # Flag to prevent setting PATH multiple times
export PATH=~/.local/bin/layouts/:$PATH # Overriding /usr/bin/*
export PATH=~/.local/bin/overrides:$PATH # Overriding /usr/bin/*
export PATH=~/.local/bin:$PATH # Highest precedence to local bin