Last active
April 30, 2025 02:38
-
-
Save squeedee/bd2cd0000732861015af562a1153f8af to your computer and use it in GitHub Desktop.
Dotfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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