diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-14 13:53:24 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-14 13:53:24 +0000 |
commit | 0953fc198e1ba6935baf53038d971289b4f9b634 (patch) | |
tree | 81831293de8d25e1119045dbe77db38f5c8de4fc /system/zsh | |
parent | 61b01a617e287545933f7169660aa6a53c03d76e (diff) | |
download | packages-0953fc198e1ba6935baf53038d971289b4f9b634.tar.gz packages-0953fc198e1ba6935baf53038d971289b4f9b634.tar.bz2 packages-0953fc198e1ba6935baf53038d971289b4f9b634.tar.xz packages-0953fc198e1ba6935baf53038d971289b4f9b634.zip |
system/zsh: save 1000 lines of history by default
Diffstat (limited to 'system/zsh')
-rw-r--r-- | system/zsh/APKBUILD | 4 | ||||
-rw-r--r-- | system/zsh/skel | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/system/zsh/APKBUILD b/system/zsh/APKBUILD index 695a26a1d..a85083fc4 100644 --- a/system/zsh/APKBUILD +++ b/system/zsh/APKBUILD @@ -4,7 +4,7 @@ # Maintainer: Dan Theisen <djt@hxx.in> pkgname=zsh pkgver=5.7.1 -pkgrel=1 +pkgrel=2 pkgdesc="A very advanced and programmable command interpreter (shell)" url="https://www.zsh.org/" arch="all" @@ -178,6 +178,6 @@ _submv() { } sha512sums="a6aa88e1955a80229a4784a128866e325f79a8b5f73c922ab480048411036f1835cbb31daa30ab38bd16ab2a50040eda8f4f1f64704b21b6acc3051b1dbf18d0 zsh-5.7.1.tar.xz -7d46b958a3402214a1982a4fbb71b9916b385e295593202e2cc4893f278b4faec6950c02b9924551687e3f6e53c727d5b6f2a8d39bc0e7abe33bedc0110f96ac skel +d820fcf65bb3c52f23e968110b5df1188fc0b64079312f64d22ffe35de3b4f3055d4d629b3b0f97a1bfaddf62dbc80676af31c3a1a79645632082abfc854cf97 skel e90723eb790581419498f3ab86fb5d6cab4aaede8c87eb79ead7047d259b643cfb47f4d1beb06d03e038cfda3a20ef9dd4c1b417270ab55c688e166fe30ef4f6 zprofile 1675e016f97333cad89b587f4292d81b6bc10e27b75482e3e0c3808539c95bd49b907b6579fb98d817f77f2f2384c0df5afa3e2b6f43b6ae9b466925cd9ccffc zshrc" diff --git a/system/zsh/skel b/system/zsh/skel index e3ddddf99..92bd52b7b 100644 --- a/system/zsh/skel +++ b/system/zsh/skel @@ -1,4 +1,6 @@ # Lines configured by zsh-newuser-install HISTFILE=~/.histfile +HISTSIZE=1000 +SAVEHIST=1000 setopt appendhistory extendedglob # End of lines configured by zsh-newuser-install |