summaryrefslogtreecommitdiff
path: root/.virtpyenvs
diff options
context:
space:
mode:
authorTyler E. Cone <tyler.cone91@gmail.com>2025-07-27 03:35:30 +0000
committerTyler E. Cone <tyler.cone91@gmail.com>2025-07-27 03:35:30 +0000
commitc1e21843a067e084e256aef1790461f93337f86d (patch)
tree0469d6438607746fdc1d96b7bc90fae9d92f0435 /.virtpyenvs
Initial Commit: Tracking global dotenv files for my default arch build.
Includes python virtualenvs, git configs, zsh configs, and thefuck settings so far.
Diffstat (limited to '.virtpyenvs')
-rwxr-xr-x.virtpyenvs/get_env_details4
-rw-r--r--.virtpyenvs/initialize3
-rw-r--r--.virtpyenvs/postactivate3
-rw-r--r--.virtpyenvs/postdeactivate3
-rwxr-xr-x.virtpyenvs/postmkproject3
-rw-r--r--.virtpyenvs/postmkvirtualenv3
-rwxr-xr-x.virtpyenvs/postrmvirtualenv4
-rwxr-xr-x.virtpyenvs/preactivate4
-rw-r--r--.virtpyenvs/predeactivate3
-rwxr-xr-x.virtpyenvs/premkproject3
-rwxr-xr-x.virtpyenvs/premkvirtualenv4
-rwxr-xr-x.virtpyenvs/prermvirtualenv4
12 files changed, 41 insertions, 0 deletions
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
+