Skip to content

Instantly share code, notes, and snippets.

@squeedee
Last active April 30, 2025 02:38
Show Gist options
  • Save squeedee/bd2cd0000732861015af562a1153f8af to your computer and use it in GitHub Desktop.
Save squeedee/bd2cd0000732861015af562a1153f8af to your computer and use it in GitHub Desktop.
Dotfiles
eval "$(starship init zsh)"
alias ls='ls --color=auto'
alias ll='ls --color=auto -al'
# Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='vim'
else
export EDITOR='nvim'
fi
bindkey "^[[H" beginning-of-line # Home
bindkey "^[[F" end-of-line # End
bindkey "^[[1~" beginning-of-line # Home (alternative code)
bindkey "^[[4~" end-of-line # End (alternative code)
alias k="kubectl"
alias unq="xattr -d com.apple.quarantine"
# alias goland='open -na "Goland.app" --args "$@"'
alias bf-dump="brew bundle dump --file=~/Brewfile"
alias bf-restore="brew bundle --file=~/Brewfile"
brew "direnv"
brew "go"
brew "neovim"
brew "starship"
brew "zsh-autosuggestions"
cask "ghostty"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment