No clobber in zsh

This commit is contained in:
2021-01-23 12:23:50 +00:00
parent f6f21f6711
commit b5101c14be

View File

@ -46,6 +46,7 @@ SAVEHIST=1000000
## I/O ## I/O
setopt INTERACTIVE_COMMENTS setopt INTERACTIVE_COMMENTS
setopt MULTIOS setopt MULTIOS
unsetopt CLOBBER
## Jobs ## Jobs
setopt LONG_LIST_JOBS setopt LONG_LIST_JOBS
@ -55,6 +56,9 @@ unsetopt NOTIFY
unsetopt HUP unsetopt HUP
unsetopt CHECK_JOBS unsetopt CHECK_JOBS
## Shell emulation
setopt APPEND_CREATE
## Prompt ## Prompt
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "