diff options
| author | seth <[email protected]> | 2022-10-08 03:16:31 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-10-08 03:16:31 -0400 |
| commit | 809390be9d121e5176f466a7f4126cf8ad47d49c (patch) | |
| tree | cf20ab173ffded9bee76348ffe9e8eae0f7d01be /.config/fish/config.fish | |
| parent | 3f87db711bf4c42fac4263c31c193fe8b5f61e54 (diff) | |
boop
Diffstat (limited to '.config/fish/config.fish')
| -rw-r--r-- | .config/fish/config.fish | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 2f44895..c727a72 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -13,7 +13,7 @@ function set_envvars end function load_plugins - if not test -f "$XDG_CONFIG_HOME/fish/functions/fisher.fish" + if not functions -q fisher echo 'bootstrapping fisher' curl -sL https://git.io/fisher | source && fisher update end @@ -21,10 +21,14 @@ function load_plugins if command -q zoxide zoxide init fish | source end + + if command -q starship + starship init fish | source + end end -if status is-login - set_envvars -else if status is-interactive +if status is-interactive load_plugins +else + set_envvars end |
