Merge branch 'master' of github.com:etorres4/dotfiles

This commit is contained in:
Eric Torres 2023-10-12 19:05:05 -07:00
commit fe83c16352
3 changed files with 6 additions and 5 deletions

View File

@ -31,14 +31,15 @@ alias pacsearch='pacman -Ss'
# system # system
alias myip='curl ifconfig.me' alias myip='curl ifconfig.me'
alias pipupgrade='pip --disable-pip-version-check list --outdated --format=json | python -c "import json, sys; print('\n'.join([x['name'] for x in json.load(sys.stdin)]))" | xargs -n1 pip install -U'
# zsh # zsh
alias zdotdir='cd -- ${ZDOTDIR}' alias zdotdir='cd -- ${ZDOTDIR}'
alias zshaliases='${EDITOR} -- "${XDG_CONFIG_HOME}"/zsh-macos/00-macos-aliases.zsh' alias zshaliases='${EDITOR} -- "${XDG_CONFIG_HOME}"/zsh-macos/00-macos-aliases.zsh'
alias zbindings='${EDITOR} -- ${ZDOTDIR}/keybindings.zsh' alias zbindings='${EDITOR} -- ${ZDOTDIR}/keybindings.zsh'
alias zhist='${EDITOR} -- ${HISTFILE}' alias zhist='${EDITOR} -- ${HISTFILE}'
alias zpath='${EDITOR} -- ${ZDOTDIR}/path.zsh' alias zpath='${EDITOR} -- ${XDG_CONFIG_HOME}/zsh-macos/path.zsh'
alias zprompt='${EDITOR} -- ${ZDOTDIR}/prompt.zsh' alias zprompt='${EDITOR} -- ${XDG_CONFIG_HOME}/zsh-macos/prompt.zsh'
alias zshrc='${EDITOR} -- ${ZDOTDIR}/.zshrc' alias zshrc='${EDITOR} -- ${ZDOTDIR}/.zshrc'
alias zshrefresh='source -- ${ZDOTDIR}/.zshrc' alias zshrefresh='source -- ${ZDOTDIR}/.zshrc'
alias zshenv='${EDITOR} -- "${XDG_CONFIG_HOME}"/zsh-macos/zshenv' alias zshenv='${EDITOR} -- "${XDG_CONFIG_HOME}"/zsh-macos/zshenv'

View File

@ -3,8 +3,8 @@
# Auto-completion # Auto-completion
# --------------- # ---------------
[[ $- == *i* ]] && source "/usr/local/Cellar/fzf/0.38.0/shell/completion.zsh" [[ $- == *i* ]] && source "/usr/local/Cellar/fzf/0.42.0/shell/completion.zsh"
# Key bindings # Key bindings
# ------------ # ------------
source "/usr/local/Cellar/fzf/0.38.0/shell/key-bindings.zsh" source "/usr/local/Cellar/fzf/0.42.0/shell/key-bindings.zsh"

View File

@ -1,4 +1,4 @@
# PATH variable configuration # PATH variable configuration
path=("${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path) path=("/usr/local/sbin" "${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path)
export PATH export PATH