From 3e799547f854e9c71f537d0f2799d4772e2b2487 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Thu, 9 May 2024 18:34:05 +0100 Subject: [PATCH] [2024-05-09] Minor .zshrc changes --- .zshrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index f06cd83..4f8c700 100644 --- a/.zshrc +++ b/.zshrc @@ -8,7 +8,7 @@ export ZSH="$HOME/.oh-my-zsh" # load a random theme each time oh-my-zsh is loaded, in which case, # to know which specific one was loaded, run: echo $RANDOM_THEME # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes -ZSH_THEME="clean" +ZSH_THEME="sorin" # Set list of themes to pick from when loading at random # Setting this variable when ZSH_THEME=random will cause zsh to load @@ -74,7 +74,7 @@ plugins=(git gh gitignore cp - dotenv + dotenv golang history pip @@ -112,3 +112,6 @@ source $ZSH/oh-my-zsh.sh # Example aliases # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" + +# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. +export PATH="$PATH:$HOME/.rvm/bin"