No known key found for this signature in database
GPG ключ ID: BC6F3C345B7D33B0
променени са
2 файла, в които са
добавени 40 реда и са
изтрити 0 реда
-
README.md
-
starship.toml
|
|
@@ -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 |
|
|
|
``` |
|
|
|
|
|
|
@@ -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 |
|
|
|
|