Skip to content

Commit 340532a

Browse files
committed
Add fish configuration
1 parent 3ad686b commit 340532a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

fish/.config/fish/config.fish

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ set -x CLICOLOR 1
66
set -x LEDGER_FILE "$HOME/Dropbox/ledger/main.ledger"
77
set -x VAGRANT_HOME /mnt/orca/vagrant
88
set -x QMK_HOME "$HOME/projects/qmk_firmware"
9+
set -x HOMEBREW_NO_ENV_HINTS 1
910

1011
set -x CDS_LIC_FILE [email protected]
1112
set -x SNPS_LICENSE_FILE [email protected]
@@ -15,9 +16,12 @@ set -x LM_LICENSE_FILE [email protected]:[email protected]:528
1516
# nix section
1617
source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
1718

19+
fish_add_path /Library/TeX/texbin
20+
fish_add_path /usr/local/bin
1821
fish_add_path $HOME/.nix-profile/bin
22+
fish_add_path $HOME/.cargo/bin
1923
fish_add_path $HOME/.local/bin
20-
fish_add_path /usr/local/bin
24+
fish_add_path $HOME/Library/ConTeXt/tex/texmf-osx-64/bin
2125

2226
function latestqr -d "Return the string corresponding to the latest QR code."
2327
ls -aS $HOME/Desktop | tail -n1 | tr \\n \\0 | xargs -0 -I% zbarimg --raw -q $HOME/Desktop/%
@@ -28,9 +32,12 @@ function vim; nvim $argv; end
2832

2933
if status is-interactive
3034
# Commands to run in interactive sessions can go here
35+
set -x GPG_TTY (tty)
36+
set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)
37+
gpgconf --launch gpg-agent
3138
end
3239

3340
direnv hook fish | source
3441

3542
# opam configuration
36-
source /Users/ymherklotz/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true
43+
source $HOME/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true

0 commit comments

Comments
 (0)