-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore starship install & configuration
While Warp is awesome, it's not a replacement for starship in all contexts. In particular, I use starship while in the terminal for IntelliJ & VSCode.
- Loading branch information
1 parent
6499e1e
commit ebfba99
Showing
4 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Only include the selected configuration files as we symlink | ||
# the folder and it may contain sensitive data. | ||
* | ||
!starship.toml | ||
!.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
add_newline = false | ||
|
||
[cmd_duration] | ||
min_time = 1 | ||
show_milliseconds = true | ||
format = "[$duration](fg:242)" | ||
|
||
# Disable default modules as per https://starship.rs/config/#default-prompt-format to improve performance | ||
|
||
[hostname] | ||
disabled = true | ||
|
||
[git_status] | ||
disabled = true | ||
|
||
[package] | ||
disabled = true | ||
|
||
[cmake] | ||
disabled = true | ||
|
||
[dart] | ||
disabled = true | ||
|
||
[dotnet] | ||
disabled = true | ||
|
||
[elixir] | ||
disabled = true | ||
|
||
[elm] | ||
disabled = true | ||
|
||
[erlang] | ||
disabled = true | ||
|
||
[golang] | ||
disabled = true | ||
|
||
[helm] | ||
disabled = true | ||
|
||
[java] | ||
disabled = true | ||
|
||
[julia] | ||
disabled = true | ||
|
||
[kotlin] | ||
disabled = true | ||
|
||
[nim] | ||
disabled = true | ||
|
||
[nodejs] | ||
disabled = true | ||
|
||
[ocaml] | ||
disabled = true | ||
|
||
[perl] | ||
disabled = true | ||
|
||
[php] | ||
disabled = true | ||
|
||
[purescript] | ||
disabled = true | ||
|
||
[python] | ||
# Enabled to show the current Python virtual environment | ||
disabled = false | ||
|
||
[ruby] | ||
disabled = true | ||
|
||
[rust] | ||
disabled = true | ||
|
||
[swift] | ||
disabled = true | ||
|
||
[terraform] | ||
disabled = true | ||
|
||
[zig] | ||
disabled = true | ||
|
||
[nix_shell] | ||
disabled = true | ||
|
||
[conda] | ||
disabled = true | ||
|
||
[aws] | ||
disabled = true | ||
|
||
[gcloud] | ||
disabled = true | ||
|
||
[env_var] | ||
disabled = true | ||
|
||
[crystal] | ||
disabled = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ binaries=( | |
p7zip | ||
pinentry-mac | ||
shellcheck | ||
starship # Used in non-warp terminals | ||
tmux | ||
tree | ||
vim | ||
|