aboutsummaryrefslogtreecommitdiff
path: root/config/fish/config.fish
diff options
context:
space:
mode:
Diffstat (limited to 'config/fish/config.fish')
-rw-r--r--config/fish/config.fish14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/fish/config.fish b/config/fish/config.fish
new file mode 100644
index 0000000..f335a9e
--- /dev/null
+++ b/config/fish/config.fish
@@ -0,0 +1,14 @@
+if status is-interactive
+ # Commands to run in interactive sessions can go here
+ if tty | string match "/dev/tty1"
+ $HOME/start
+ end
+end
+
+# bun
+set --export BUN_INSTALL "$HOME/.bun"
+set --export GOPATH "$HOME/go"
+set --export PATH $BUN_INSTALL/bin $GOPATH/bin $HOME/.local/bin $PATH
+
+# gpg
+export GPG_TTY=$(tty)