From 064f1859fbfae2d49d0764d3f593b17f1e2edc9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Mon, 7 Oct 2019 21:16:05 +0200 Subject: [PATCH] Initial commit --- README.md | 13 +++++++++++++ starship.toml | 27 +++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 README.md create mode 100644 starship.toml 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 +