From a12da0c244640b8dfbcba7941e327733f3171bba Mon Sep 17 00:00:00 2001 From: Jeff Clement Date: Thu, 6 Mar 2025 17:12:57 -0700 Subject: [PATCH] fixes --- fish/config.fish | 12 ++++++++++-- fish/fish_variables | 2 +- install.sh | 1 + starship.toml | 10 ++++++++++ 4 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 starship.toml diff --git a/fish/config.fish b/fish/config.fish index 2f16104..b0f1632 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -1,6 +1,13 @@ if status is-interactive - set -g fish_key_bindings fish_vi_key_bindings - starship init fish | source + set -g fish_key_bindings fish_vi_key_bindings + + if command -q starship + starship init fish | source + else if test -x /opt/homebrew/bin/starship + /opt/homebrew/bin/starship init fish | source + else if test -x /usr/local/bin/starship + /usr/local/bin/starship init fish | source + end end set -U fish_greeting @@ -12,3 +19,4 @@ end if test -f "$HOME/.config/fish/local.fish" source "$HOME/.config/fish/local.fish" end + diff --git a/fish/fish_variables b/fish/fish_variables index 99a0e8f..56cf986 100644 --- a/fish/fish_variables +++ b/fish/fish_variables @@ -34,4 +34,4 @@ SETUVAR fish_pager_color_description:yellow\x1e\x2di SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan SETUVAR fish_pager_color_selected_background:\x2dr -SETUVAR fish_user_paths:/opt/homebrew/bin +SETUVAR fish_user_paths:/Users/jsc/Applications/flutter/bin\x1e/opt/homebrew/bin diff --git a/install.sh b/install.sh index 1dca054..83c8594 100755 --- a/install.sh +++ b/install.sh @@ -53,6 +53,7 @@ SYMLINKS=( "vim/config.vim:$HOME/.vim_runtime/my_configs.vim" "vim/plugins:$HOME/.vim_runtime/my_plugins" "fish:$HOME/.config/fish" + "starship.toml:$HOME/.config/starfish.toml" ) TARGET_SHELL="fish" diff --git a/starship.toml b/starship.toml new file mode 100644 index 0000000..6ade7a2 --- /dev/null +++ b/starship.toml @@ -0,0 +1,10 @@ +# Get editor completions based on the config schema +"$schema" = 'https://starship.rs/config-schema.json' + +# Inserts a blank line between shell prompts +add_newline = true +command_timeout = 750 + +# Disable the package module, hiding it from the prompt completely +[package] +disabled = true