aboutsummaryrefslogtreecommitdiff
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
parent8079bb25a3ceb56af701b492566194c586f5d053 (diff)
zshrc: Set -p flag on mkcd mkdir
-rw-r--r--gpg-agent.conf2
-rw-r--r--zshrc2
2 files changed, 2 insertions, 2 deletions
diff --git a/gpg-agent.conf b/gpg-agent.conf
index 8da9c20..f30d462 100644
--- a/gpg-agent.conf
+++ b/gpg-agent.conf
@@ -1,3 +1,3 @@
default-cache-ttl 7200
max-cache-ttl 86400
-pinentry-program /usr/bin/pinentry
+pinentry-program /usr/bin/pinentry-qt
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
}