diff options
| author | William Hergès <william@herges.fr> | 2025-08-12 15:25:14 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-08-12 15:25:14 +0200 |
| commit | ab93bfa16d109a09d49e35e77e7fb2634f8bb0c1 (patch) | |
| tree | aa0efb33e3bc78b6612e3041b93cc9f58f593d38 /config/fish/config.fish | |
| parent | 90fe253c51355e66f1a87c8478cf04c36a4d58f0 (diff) | |
feat(config): fish
Diffstat (limited to 'config/fish/config.fish')
| -rw-r--r-- | config/fish/config.fish | 14 |
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) |
