From 2dc55cc5f35851c32895c970ec768ee7ff846b02 Mon Sep 17 00:00:00 2001 From: Tom Reznick Date: Wed, 13 Jan 2021 13:00:21 -0500 Subject: [PATCH 1/2] gitignore everything in oh-my-zsh-custom except the continuity theme --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 32b35d9..73b6775 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ home/.vim/spell home/.vim/backup home/.vim/plugged home/.vim/local +home/.oh-my-zsh-custom/* +!home/.oh-my-zsh-custom/continuity.zsh-theme From f4d66ca030fab582798baf9a6caf8590a3831f64 Mon Sep 17 00:00:00 2001 From: Tom Reznick Date: Wed, 13 Jan 2021 13:03:14 -0500 Subject: [PATCH 2/2] change oh-my-zsh source time to allow overriding env variables --- home/.zshrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home/.zshrc b/home/.zshrc index 4733b57..58a19cc 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -4,8 +4,6 @@ export ZSH_CUSTOM=$HOME/.oh-my-zsh-custom export ZSH_THEME="continuity" plugins=(git git-flow rails ruby osx gem vi-mode rvm bundler) -source $ZSH/oh-my-zsh.sh - export LC_ALL=en_US.UTF-8 #disable ctrl-s/suspension @@ -137,6 +135,7 @@ fi if [ ! -f "$HOME/.tmux/user.conf" ]; then touch $HOME/.tmux/user.conf fi +source $ZSH/oh-my-zsh.sh # RVM is a silly thing. This fixes tmux not loading gemset # http://stackoverflow.com/a/6097090/3010499