Skip to content

Instantly share code, notes, and snippets.

@Firenza
Last active September 4, 2024 17:36
Show Gist options
  • Save Firenza/504dd69cacf345b880300eaf54bd435b to your computer and use it in GitHub Desktop.
Save Firenza/504dd69cacf345b880300eaf54bd435b to your computer and use it in GitHub Desktop.
Mac Setup

Add the alias alias path="echo $PATH | tr ':' '\n'" to ~/.zshrc

  • Install Oh-My-Zsh
  • Update zsh config file ~./zshrc to have some updates
HISTFILE=~/.zsh_history # location of the history file
HISTFILESIZE=1000000000 # history limit of the file on disk
HISTSIZE=1000000000 # current session's history limit
SAVEHIST=500000 # zsh saves this many lines from the in-memory history list to the history file upon shell exit
HISTTIMEFORMAT="%d/%m/%Y %H:%M] "

setopt INC_APPEND_HISTORY # history file is updated immediately after a command is entered
setopt SHARE_HISTORY # allows multiple Zsh sessions to share the same command history 
setopt EXTENDED_HISTORY # records the time when each command was executed along with the command itself
setopt APPENDHISTORY # ensures that each command entered in the current session is appended to the history file immediately after execution
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment