Browse Source

Initial commit

master
Jérôme Deuchnord 4 years ago
commit
064f1859fb
No known key found for this signature in database GPG Key ID: BC6F3C345B7D33B0
2 changed files with 40 additions and 0 deletions
  1. +13
    -0
      README.md
  2. +27
    -0
      starship.toml

+ 13
- 0
README.md View File

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

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


Loading…
Cancel
Save