Skip to content

Instantly share code, notes, and snippets.

@mamercad
Created April 22, 2022 21:33
Show Gist options
  • Save mamercad/77716d7c15e2274b805a86103d37061e to your computer and use it in GitHub Desktop.
Save mamercad/77716d7c15e2274b805a86103d37061e to your computer and use it in GitHub Desktop.
dotfiles
❯ grep -v ^# ~/.zshrc | grep ^\.
export ZSH="/Users/mark/.oh-my-zsh"
ZSH_DISABLE_COMPFIX="true"
zstyle :omz:plugins:ssh-agent agent-forwarding on
zstyle :omz:plugins:ssh-agent identities personal.key
ZSH_THEME="dracula"
ZSH_TMUX_AUTOCONNECT="false"
plugins=(direnv fzf git kubectl pyenv pipenv rbenv ssh-agent tmux thefuck fly charm)
source $ZSH/oh-my-zsh.sh
[[ -f ~/.envvars ]] && source ~/.envvars
[[ -f ~/.paths ]] && source ~/.paths
[[ -f ~/.aliases ]] && source ~/.aliases
[[ -f ~/.functions ]] && source ~/.functions
[[ -f ~/.options ]] && source ~/.options
eval "$(starship init zsh)"
❯ grep -v ^# ~/.options | grep ^\.
set -o vi
bindkey -v
bindkey -M vicmd v edit-command-line
[[ -f ~/.fzf.zsh ]] && source ~/.fzf.zsh
❯ grep -v ^# ~/.fzf.zsh | grep ^\.
if [[ ! "$PATH" == */usr/local/opt/fzf/bin* ]]; then
export PATH="${PATH:+${PATH}:}/usr/local/opt/fzf/bin"
fi
[[ $- == *i* ]] && source "/usr/local/opt/fzf/shell/completion.zsh" 2> /dev/null
source "/usr/local/opt/fzf/shell/key-bindings.zsh"
❯ grep -v ^# .config/starship.toml | grep ^\.
command_timeout = 60000
[hostname]
ssh_only = false
format = "on [$hostname](bold red) "
disabled = false
[status]
style = "bg:red fg:black"
symbol = "✖"
format = '[\[$symbol $common_meaning$signal_name$maybe_int\]]($style) '
map_symbol = true
disabled = false
[kubernetes]
disabled = false
[time]
disabled = true
format = '[\[ $time \]]($style) '
time_format = "%T"
utc_time_offset = "-5"
time_range = "10:00:00-14:00:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment