Skip to content

Instantly share code, notes, and snippets.

@weskerfoot
Created March 6, 2023 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weskerfoot/167237d8ab51262b4046a1a62b1e9b19 to your computer and use it in GitHub Desktop.
Save weskerfoot/167237d8ab51262b4046a1a62b1e9b19 to your computer and use it in GitHub Desktop.
source /opt/homebrew/Cellar/fzf/0.38.0/shell/completion.bash
source /opt/homebrew/Cellar/fzf/0.38.0/shell/key-bindings.bash
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
export PYENV_ROOT="$HOME/.pyenv"
export EDITOR=vim
LS_COLORS=$LS_COLORS:'di=0;35:' ; export LS_COLORS
PS1='\[\e[1;32m\][\u \W]\$\[\e[0m\] '
eval "$(/opt/homebrew/bin/brew shellenv)"
alias cl='clear'
alias rg='rg --hidden'
alias python=python3
alias pip=pip3
set -o vi
export PROMPT='%T %B%~%b $ '
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# BEGIN_KITTY_SHELL_INTEGRATION
if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi
# END_KITTY_SHELL_INTEGRATION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment