From c1e21843a067e084e256aef1790461f93337f86d Mon Sep 17 00:00:00 2001 From: "Tyler E. Cone" Date: Sun, 27 Jul 2025 03:35:30 +0000 Subject: Initial Commit: Tracking global dotenv files for my default arch build. Includes python virtualenvs, git configs, zsh configs, and thefuck settings so far. --- .virtpyenvs/get_env_details | 4 ++++ .virtpyenvs/initialize | 3 +++ .virtpyenvs/postactivate | 3 +++ .virtpyenvs/postdeactivate | 3 +++ .virtpyenvs/postmkproject | 3 +++ .virtpyenvs/postmkvirtualenv | 3 +++ .virtpyenvs/postrmvirtualenv | 4 ++++ .virtpyenvs/preactivate | 4 ++++ .virtpyenvs/predeactivate | 3 +++ .virtpyenvs/premkproject | 3 +++ .virtpyenvs/premkvirtualenv | 4 ++++ .virtpyenvs/prermvirtualenv | 4 ++++ 12 files changed, 41 insertions(+) create mode 100755 .virtpyenvs/get_env_details create mode 100644 .virtpyenvs/initialize create mode 100644 .virtpyenvs/postactivate create mode 100644 .virtpyenvs/postdeactivate create mode 100755 .virtpyenvs/postmkproject create mode 100644 .virtpyenvs/postmkvirtualenv create mode 100755 .virtpyenvs/postrmvirtualenv create mode 100755 .virtpyenvs/preactivate create mode 100644 .virtpyenvs/predeactivate create mode 100755 .virtpyenvs/premkproject create mode 100755 .virtpyenvs/premkvirtualenv create mode 100755 .virtpyenvs/prermvirtualenv (limited to '.virtpyenvs') diff --git a/.virtpyenvs/get_env_details b/.virtpyenvs/get_env_details new file mode 100755 index 0000000..d579c40 --- /dev/null +++ b/.virtpyenvs/get_env_details @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run when the list of virtualenvs is printed so each name can include details. +# argument: environment name + diff --git a/.virtpyenvs/initialize b/.virtpyenvs/initialize new file mode 100644 index 0000000..9715e08 --- /dev/null +++ b/.virtpyenvs/initialize @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced during the startup phase when loading virtualenvwrapper.sh. + diff --git a/.virtpyenvs/postactivate b/.virtpyenvs/postactivate new file mode 100644 index 0000000..cef5f89 --- /dev/null +++ b/.virtpyenvs/postactivate @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced after every virtualenv is activated. + diff --git a/.virtpyenvs/postdeactivate b/.virtpyenvs/postdeactivate new file mode 100644 index 0000000..6fefe20 --- /dev/null +++ b/.virtpyenvs/postdeactivate @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced after every virtualenv is deactivated. + diff --git a/.virtpyenvs/postmkproject b/.virtpyenvs/postmkproject new file mode 100755 index 0000000..8de8f2d --- /dev/null +++ b/.virtpyenvs/postmkproject @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is run after a new project is activated. + diff --git a/.virtpyenvs/postmkvirtualenv b/.virtpyenvs/postmkvirtualenv new file mode 100644 index 0000000..5d48abc --- /dev/null +++ b/.virtpyenvs/postmkvirtualenv @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced after a new virtualenv is activated. + diff --git a/.virtpyenvs/postrmvirtualenv b/.virtpyenvs/postrmvirtualenv new file mode 100755 index 0000000..0d34a0e --- /dev/null +++ b/.virtpyenvs/postrmvirtualenv @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run after a virtualenv is deleted. +# argument: full path to environment directory + diff --git a/.virtpyenvs/preactivate b/.virtpyenvs/preactivate new file mode 100755 index 0000000..79d4810 --- /dev/null +++ b/.virtpyenvs/preactivate @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run before every virtualenv is activated. +# argument: environment name + diff --git a/.virtpyenvs/predeactivate b/.virtpyenvs/predeactivate new file mode 100644 index 0000000..265b48b --- /dev/null +++ b/.virtpyenvs/predeactivate @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced before every virtualenv is deactivated. + diff --git a/.virtpyenvs/premkproject b/.virtpyenvs/premkproject new file mode 100755 index 0000000..fb93455 --- /dev/null +++ b/.virtpyenvs/premkproject @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is run after a new project is created and before it is activated. + diff --git a/.virtpyenvs/premkvirtualenv b/.virtpyenvs/premkvirtualenv new file mode 100755 index 0000000..0e6671e --- /dev/null +++ b/.virtpyenvs/premkvirtualenv @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run after a new virtualenv is created and before it is activated. +# argument: name of new environment + diff --git a/.virtpyenvs/prermvirtualenv b/.virtpyenvs/prermvirtualenv new file mode 100755 index 0000000..d0affe8 --- /dev/null +++ b/.virtpyenvs/prermvirtualenv @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run before a virtualenv is deleted. +# argument: full path to environment directory + -- cgit v1.2.3-70-g09d2