17 lines
280 B
Fish
17 lines
280 B
Fish
|
#!/bin/fish
|
||
|
|
||
|
# Disable the greeting
|
||
|
set fish_greeting
|
||
|
|
||
|
## Application-specific configurations
|
||
|
|
||
|
# opam
|
||
|
if test -e ~/.opam/opam-init/init.fish
|
||
|
source ~/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true
|
||
|
end
|
||
|
|
||
|
# direnv/envrc
|
||
|
if type -q direnv
|
||
|
direnv hook fish | source
|
||
|
end
|