From 54452a6c069a412bcd3bf3a64a51d24ea04ffd6f Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Sat, 13 May 2023 17:35:09 -0300 Subject: quick 2023 update --- .zshrc | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .zshrc (limited to '.zshrc') diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..fb965f5 --- /dev/null +++ b/.zshrc @@ -0,0 +1,35 @@ +# ~nebula/.zshrc, 2023 edition + + +# //// zsh configuration //////////////////////////////////////////////////// # + +if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then + autoload -U colors && colors + PS1=$'\e[0;32;1m%n\e[0;32m@\e[32;1m%m \e[34m%1~ \e[0m%# ' + PROMPT="%F{green}%B%n%b@%B%m %F{blue}%1~%b%f %# " +else + PS1=$'%n@%m %1~ %# ' +fi + + +# //// third party configuration //////////////////////////////////////////// # + +# -- GPG -- + +export GPG_TTY=$(tty) + +# -- Homebrew -- + +eval "$(/opt/homebrew/bin/brew shellenv)" + +# -- Node Version Manager -- + +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" + +# -- Python -- + +path+=("$HOME/Library/Python/3.9/bin") +path+=("/Applications/Sublime Text.app/Contents/SharedSupport/bin") +export PATH -- cgit 1.3.0-6-gf8a5