Moved cask installation to it's own command.

This commit is contained in:
2021-12-13 09:37:41 -05:00
parent 9c48322f85
commit 0e6155386b
8 changed files with 2827 additions and 15 deletions

View File

@@ -1,8 +1,4 @@
# configure keeping history of commands
# TODO: move to $ZDOTDIR/.zsh_history
setopt appendhistory
setopt sharehistory
setopt incappendhistory

View File

@@ -3,6 +3,7 @@
alias zdots() { nvim "$ZDOTDIR" }
alias dots() { nvim ~/.dotfiles }
alias reload() { source "$ZDOTDIR/.zshrc" }
alias banner() { clear && cat < "$ZDOTDIR/banner" }
alias mkcd() { mkdir $1 && cd $1 }
alias l() { ls -lah "$@" }

View File

@@ -5,6 +5,8 @@ HISTFILE=$ZDOTDIR/history
# Allow useful scripts in ~/.bin to be in the search path.
export PATH=~/.bin:$PATH
export PATH=/opt/homebrew/bin:$PATH
export PATH=/opt/homebrew/sbin:$PATH
# zsh-completions installed by homebrew
if type brew &>/dev/null; then