forked from nvim-lua/kickstart.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
53 lines (44 loc) · 1.04 KB
/
starship.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
format = """\
[](fg:bright-green)\
$hostname\
[](fg:bright-green bg:blue)\
$directory\
[](fg:blue bg:yellow)\
$git_branch\
$git_status\
$git_metrics\
[](fg:yellow)\
$character\
"""
[hostname]
ssh_only = false
format = '[ $hostname ]($style)'
style = "fg:black bg:bright-green"
[directory]
format = "[ \ue613 $path ]($style)"
style = "fg:black bg:blue"
[git_branch]
format = '[ $symbol$branch(:$remote_branch) ]($style)'
symbol = " "
style = "fg:black bg:yellow"
[git_status]
format = '[$all_status]($style)'
style = "fg:black bg:yellow"
[git_metrics]
format = "([+$added]($added_style))[]($added_style)"
added_style = "fg:black bg:yellow"
deleted_style = "fg:bright-red bg:235"
disabled = false
[hg_branch]
format = "[ $symbol$branch ]($style)"
symbol = " "
[cmd_duration]
format = "[ $duration ]($style)"
style = "fg:bright-white bg:18"
[character]
success_symbol = ''
error_symbol = '[ ](bold bright-red)'
[time]
disabled = false
time_format = "%R" # Hour:Minute Format
format = '[[ $time ](bold bg:black fg:green)]($style)'