Procházet zdrojové kódy

Initial commit

master
Jérôme Deuchnord před 4 roky
revize
064f1859fb
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: BC6F3C345B7D33B0
2 změnil soubory, kde provedl 40 přidání a 0 odebrání
  1. +13
    -0
      README.md
  2. +27
    -0
      starship.toml

+ 13
- 0
README.md Zobrazit soubor

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

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


Načítá se…
Zrušit
Uložit