Skip to content

Instantly share code, notes, and snippets.

@RFullum
Last active June 22, 2022 17:35
Show Gist options
  • Save RFullum/09d3123568abf2e08a47ad8c203f05a3 to your computer and use it in GitHub Desktop.
Save RFullum/09d3123568abf2e08a47ad8c203f05a3 to your computer and use it in GitHub Desktop.
.zshrc
#Simultaneously create and switch to new directory
function mkcd () { mkdir -p "$@" && cd "$@"; }
#Repleace spaces in filenames in a directory with an underscore
function repspace () { find . -type f -name "* *" -exec bash -c 'mv "$0" "${0// /_}"' {} ";" ; }
#Prompt
PS1="%F{cyan}%n:%1~$%f "
autoload -Uz compinit && compinit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment