Remove call to dirname(1)
This commit is contained in:
parent
d1d2422485
commit
dfd7dddf75
2
init.zsh
2
init.zsh
@ -36,7 +36,7 @@ unsetopt beep notify
|
||||
# Some general, random configuration
|
||||
# History stuff
|
||||
[ -v HISTFILE ] || HISTFILE="${HOME}/.cache/zsh/history"
|
||||
[ ! -d "$(dirname "${HISTFILE}")" ] && mkdir -p "$(dirname "${HISTFILE}")"
|
||||
[ ! -d "${HISTFILE:h}" ] && mkdir -p "${HISTFILE:h}"
|
||||
HISTSIZE=1000
|
||||
SAVEHIST=10000
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user