this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

some zsh cleanup + work machine rename

+4 -46
+3 -46
zsh/zshenv
··· 31 31 alias tm=$HOME/dotfiles/scripts/tmopen.sh 32 32 alias aic="aicommits --type conventional" 33 33 34 - # if machine name is nebula.. 35 - if [[ $(hostname) == "nebula" ]]; then 34 + # if machine name is asteroid.. 35 + if [[ $(hostname) == "asteroid" ]]; then 36 36 alias mro="glab mr view -w" 37 37 alias mktkt=$HOME/dotfiles/scripts/zapier/make-ticket.sh 38 38 alias mkmr=$HOME/dotfiles/scripts/zapier/make-mr.sh ··· 66 66 # Gets timestamp formatted like YYYY-MM-DD.md 67 67 function dn { 68 68 vault="brain" 69 - if [[ $(hostname) == "nebula" ]]; then 69 + if [[ $(hostname) == "asteroid" ]]; then 70 70 vault="zapier" 71 71 fi 72 72 ··· 77 77 nvim -c "Goyo" -c $'normal Go\eo***\eo\eo' -c "startinsert" $todays_note 78 78 } 79 79 80 - # https://esham.io/2025/05/shell-history 81 - function smite() { 82 - setopt LOCAL_OPTIONS ERR_RETURN PIPE_FAIL 83 - 84 - local opts=( -I ) 85 - if [[ $1 == '-a' ]]; then 86 - opts=() 87 - elif [[ -n $1 ]]; then 88 - print >&2 'usage: smite [-a]' 89 - return 1 90 - fi 91 - 92 - fc -l -n $opts 1 | \ 93 - fzf --no-sort --tac --multi | \ 94 - while IFS='' read -r command_to_delete; do 95 - printf 'Removing history entry "%s"\n' $command_to_delete 96 - local HISTORY_IGNORE="${(b)command_to_delete}" 97 - fc -W 98 - fc -p $HISTFILE $HISTSIZE $SAVEHIST 99 - done 100 - } 101 - 102 - function syncsys { 103 - cd $DOTFILES_DIR 104 - git pull --rebase 105 - make 106 - cd - 107 - } 108 - 109 - function mdp() { 110 - # Requires Markdown Viewer extension 111 - # - https://chrome.google.com/webstore/detail/markdown-viewer/ckkdlimhmcjmikdlpkmbgfkaikojcbjk?hl=en 112 - open -a '/Applications/Google Chrome.app' $1 113 - } 114 - 115 80 function gbrowse() { 116 81 branch=$(git branch --show-current) 117 82 if [ -z "$branch" ]; then ··· 135 100 136 101 export HOMEBREW_BUNDLE_FILE="$HOME/dotfiles/Brewfile" 137 102 138 - export PATH="$HOME/.cargo/bin:$PATH" 139 - export PATH="$HOME/.pyenv/shims:$PATH" 140 - export PATH="$HOME/go/bin:$PATH" 141 - export PATH="$HOME/.deno/bin:$PATH" 142 - export PATH="$HOME/.local/bin:$PATH" 143 - 144 - [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" 145 103 [ -f "$HOME/code/zapier/personal-utils.sh" ] && source $HOME/code/zapier/personal-utils.sh 146 - [ -f "$HOME/.nix-profile/etc/profile.d/nix.sh" ] && source $HOME/.nix-profile/etc/profile.d/nix.sh
+1
zsh/zshrc
··· 14 14 [ -f "/Users/sethetter/.config/op/plugins.sh" ] && source /Users/sethetter/.config/op/plugins.sh 15 15 16 16 export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH" 17 + export PATH="$HOME/.local/bin:$PATH"