diff options
author | Hsieh Chin Fan <typebrook@gmail.com> | 2022-03-31 20:12:00 +0800 |
---|---|---|
committer | Hsieh Chin Fan <typebrook@gmail.com> | 2022-03-31 20:12:00 +0800 |
commit | 7066f5b315de8af9b8776e1fa8ee6ae5170e7775 (patch) | |
tree | 93ac5d255ddaf81ac3439b2cc545d2a7d9a55c19 | |
parent | 5c850f90272d9b1845d878e2026292b8137801d5 (diff) |
update
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | tools/init/load-settings.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -51,7 +51,7 @@ task: | |||
51 | fi | 51 | fi |
52 | 52 | ||
53 | gpg: | 53 | gpg: |
54 | sudo ln -sf `pwd`/gpg-agent ~/.gnupg/gpg-agent.conf | 54 | ln -sf `pwd`/gpg-agent ~/.gnupg/gpg-agent.conf |
55 | gpgconf --reload gpg-agent | 55 | gpgconf --reload gpg-agent |
56 | 56 | ||
57 | mutt: | 57 | mutt: |
diff --git a/tools/init/load-settings.sh b/tools/init/load-settings.sh index 68844c1..af75cc4 100755 --- a/tools/init/load-settings.sh +++ b/tools/init/load-settings.sh | |||
@@ -15,9 +15,11 @@ case $shell in | |||
15 | autoload -U deer | 15 | autoload -U deer |
16 | zle -N deer | 16 | zle -N deer |
17 | bindkey '\ek' deer | 17 | bindkey '\ek' deer |
18 | alias history='history -i' | ||
18 | ;; | 19 | ;; |
19 | *bash*) | 20 | *bash*) |
20 | shopt -s extglob | 21 | shopt -s extglob |
22 | HISTTIMEFORMAT='%Y-%m-%d %T ' | ||
21 | ;; | 23 | ;; |
22 | esac | 24 | esac |
23 | 25 | ||