summaryrefslogtreecommitdiff
path: root/zsh/env
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2017-10-17 18:12:57 -0600
committermediocregopher <mediocregopher@gmail.com>2021-10-03 17:22:56 -0600
commit07ab3a77b44944a1ac234fbd717391f36370416e (patch)
treeedd959740bf9256bf38e9c2e3cacda8c555f8c56 /zsh/env
initial public commit
Diffstat (limited to 'zsh/env')
-rw-r--r--zsh/env18
1 files changed, 18 insertions, 0 deletions
diff --git a/zsh/env b/zsh/env
new file mode 100644
index 0000000..0188d76
--- /dev/null
+++ b/zsh/env
@@ -0,0 +1,18 @@
+#Global stuff shitty programs use
+export EDITOR=~/.nix-profile/bin/nvim
+
+#Basics
+export PATH=$PATH:/bin
+export PATH=$PATH:/usr/bin
+export PATH=$PATH:/usr/local/bin
+
+#my shit
+export PATH=~/bin:$PATH
+
+#Go has its own path system. Way to be difficult go
+export GOPATH=~/.go
+export GOBIN=$GOPATH/bin
+export PATH=$GOPATH/bin:$PATH
+
+# GPG is needy
+export GPG_TTY=$(tty)