aboutsummaryrefslogtreecommitdiff
path: root/zshrc
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-05-14 11:42:12 +0200
committerHimbeer <himbeer@disroot.org>2024-05-14 11:42:12 +0200
commit6242d054f6fe8de996e2279338da9b65e17fcd3d (patch)
treefdc27631bb174df5ab288e56c17b632e9eb54cf2 /zshrc
parent8079bb25a3ceb56af701b492566194c586f5d053 (diff)
zshrc: Set -p flag on mkcd mkdir
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/zshrc b/zshrc
index e97ce79..63f4be1 100644
--- a/zshrc
+++ b/zshrc
@@ -65,5 +65,5 @@ source ~/.zsh_fzf_key_bindings
source ~/.zsh_fzf_completion
mkcd() {
- mkdir $1 && cd $1
+ mkdir -p $1 && cd $1
}