17 lines
280 B
Fish
Executable File
17 lines
280 B
Fish
Executable File
#!/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
|