-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
64 lines (48 loc) · 1.73 KB
/
Copy pathconfig.toml
File metadata and controls
64 lines (48 loc) · 1.73 KB
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
54
55
56
57
58
59
60
61
62
63
64
# Default configuration
# The shell Zygal is used in.
#
# Necessary to use shell-specific escape strings and color syntax. Using ANSI
# colors breaks shell plugins.
shell = "zsh"
# The content of the new-line segment.
#
# It's forwarded as-is to the shell, so it can contain any shell-specific
# syntax for its prompt.
new-line-content = "%#"
# Whether to add space around the content in every segment.
space-around = true
# Symbols to use in the git information segment.
#
# All "git" configuration keys are optional, except for the ones nested under
# the "remote" table. The "remote" table itself is optional though.
# If a key is not present, its symbol is not displayed.
# The symbols are shown in the order they appear below. For example, if there
# are stashes and untracked files, '$%' would be displayed.
[git]
# Shown in case of a merge conflict.
merge = "M"
# Shown in case of a rebase conflict or an in-progress interactive rebase.
rebase = "B"
# Shown in case of a cherry-pick conflict.
cherry-pick = "H"
# Shown in case of a revert conflict.
revert = "V"
# Shown with modified tracked files that are not staged.
unstaged = "*"
# Shown with modified tracked files that are staged.
staged = "+"
# Shown when there are stashes.
stash = "$"
# Shown when there are untracked files.
untracked = "%"
# Displays the state of the local branch in relation to its tracked (remote)
# branch.
# Nothing is shown if the local branch has no tracked branch.
[git.remote]
# Shown when the local branch has commits that are not present on its tracked
# branch.
ahead = ">"
# Shown when the local branch is missing some commits from its tracked branch.
behind = "<"
# Shown when the local branch points to the same commit as its tracked branch.
on-par = "="