[zsh] Sets history options

This commit is contained in:
Drew Haven
2025-02-07 16:56:47 -08:00
parent 2c6a0829e1
commit eb7e431160

View File

@@ -12,10 +12,19 @@
bindkey "^U" backward-kill-line
alias 'p?'='ps ax | grep'
# This doesn't seem to be in the homemanager options
# Makes shells incrementally append history so that new shells have the history of open shells
setopt inc_append_history
'';
history = {
# Do not share history between sessions.
share = false;
};
oh-my-zsh = {
enable = true;
# theme = "powerlevel10k";
plugins = [
"git"
"git-prompt"