Parcourir la source

Initial commit

master
Jérôme Deuchnord il y a 4 ans
révision
064f1859fb
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: BC6F3C345B7D33B0
2 fichiers modifiés avec 40 ajouts et 0 suppressions
  1. +13
    -0
      README.md
  2. +27
    -0
      starship.toml

+ 13
- 0
README.md Voir le fichier

@@ -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
```


+ 27
- 0
starship.toml Voir le fichier

@@ -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


Chargement…
Annuler
Enregistrer