commit 064f1859fbfae2d49d0764d3f593b17f1e2edc9f Author: JΓ©rΓ΄me Deuchnord Date: Mon Oct 7 21:16:05 2019 +0200 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..5f48902 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Starship configuration + +My personal configuration of [Starship](https://starship.rs). + +## Installation step + +Install Starship, then: + +```console +$ git clone https://git.deuchnord.fr/Deuchnord/Starshipconf.git +$ ln starship.toml ~/.config/starship.toml +``` + diff --git a/starship.toml b/starship.toml new file mode 100644 index 0000000..49cc344 --- /dev/null +++ b/starship.toml @@ -0,0 +1,27 @@ +# Don't print a new line at the start of the prompt +add_newline = true + +# Replace the "❯" symbol in the prompt with "➜" +[character] # The name of the module we are configuring is "character" +symbol = "πŸš€" # The "symbol" segment is being set to "➜" + +[memory_usage] +disabled = false +threshold = 10 + +[cmd_duration] +min_time = 1 + +[git_status] +conflicted = "🏳" +ahead = "πŸŽπŸ’¨" +behind = "😰" +diverged = "😡" +untracked = "πŸ€·β€" +stashed = "πŸ“¦" +modified = "πŸ“" +staged = "βž•" +renamed = "πŸ‘…" +deleted = "πŸ—‘" +show_sync_count = true +