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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Paneship Configuration Example
# Save to ~/.config/paneship/config.toml to customize
[]
# Directory icon (use Nerd Font icons)
= ""
# Number of path segments to keep before truncation
= 3
# Truncate to repository root if inside a Git repo
= true
[]
# Git branch icon
= ""
# Icons for Git status
= "+"
= "!"
= "?"
[]
# Cursor icon for successful commands
= "➜"
# Cursor icon for failed commands
= "➜"
[]
# Time display color (ANSI SGR code)
# 2;37 = dim white
= "2;37"
# Paneship version color
# 1;32 = bright green
= "1;32"
# Language-specific configuration
# Add new languages by adding [metadata.languages.<name>] sections
[]
# Rust project icon
= "🦀"
# Color for Rust (1;33 = bright yellow)
= "1;33"
[]
= "⬢"
= "1;32" # bright green
[]
= "🥟"
= "1;38;5;208" # orange
[]
= "🐍"
= "1;34" # bright blue
[]
= "🐹"
= "1;36" # bright cyan
[]
= "🦕"
= "1;32" # bright green
[]
= "💎"
= "1;31" # bright red
[]
= "🐘"
= "1;35" # bright magenta
[]
= "☕"
= "1;31" # bright red
# ANSI Color Reference:
# Standard colors: 30-37, 90-97
# Bright colors: 1;30 - 1;37
# Custom: 38;5;<color> (256 colors) or 38;2;<r>;<g>;<b> (24-bit)
# Examples:
# 1;31 = bright red
# 1;32 = bright green
# 1;33 = bright yellow
# 1;34 = bright blue
# 1;35 = bright magenta
# 1;36 = bright cyan
# 1;37 = bright white
# 2;37 = dim white
# 38;5;208 = orange (256-color)