mirror of
https://github.com/anthonyoteri/dotfiles.git
synced 2026-06-05 15:46:54 -04:00
7e64c92952
Signed-off-by: Anthony Oteri <4360016+anthonyoteri@users.noreply.github.com>
128 lines
3.1 KiB
TOML
128 lines
3.1 KiB
TOML
console_title_template = '{{ .Shell }} in {{ .Folder }}'
|
|
version = 4
|
|
final_space = true
|
|
|
|
[palette]
|
|
black = '#1e1e2e' # Base
|
|
surface = '#313244' # Surface0
|
|
white = '#cdd6f4' # Text
|
|
blue = '#89b4fa' # Blue
|
|
sapphire = '#74c7ec' # Sapphire
|
|
lavender = '#b4befe' # Lavender
|
|
green = '#a6e3a1' # Green
|
|
mauve = '#cba6f7' # Mauve
|
|
red = '#f38ba8' # Red
|
|
yellow = '#f9e2af' # Yellow
|
|
|
|
[secondary_prompt]
|
|
template = '<p:mauve,transparent></><,p:mauve> > </><p:mauve,transparent></> '
|
|
foreground = 'p:black'
|
|
background = 'transparent'
|
|
|
|
[transient_prompt]
|
|
template = '<p:mauve,transparent></><,p:mauve> {{ .Folder }} </><p:mauve,transparent></> '
|
|
foreground = 'p:black'
|
|
background = 'transparent'
|
|
|
|
[upgrade]
|
|
source = 'cdn'
|
|
interval = '168h'
|
|
auto = false
|
|
notice = false
|
|
|
|
[[blocks]]
|
|
type = 'prompt'
|
|
alignment = 'left'
|
|
newline = true
|
|
|
|
[[blocks.segments]]
|
|
leading_diamond = ''
|
|
trailing_diamond = ''
|
|
template = ' {{ if .SSHSession }} {{ end }}{{ .UserName }} '
|
|
foreground = 'p:black'
|
|
background = 'p:mauve'
|
|
type = 'session'
|
|
style = 'diamond'
|
|
|
|
[[blocks.segments]]
|
|
template = ' <b>{{ path .Path .Location }}</b> '
|
|
foreground = 'p:sapphire'
|
|
powerline_symbol = ''
|
|
background = 'p:surface'
|
|
type = 'path'
|
|
style = 'powerline'
|
|
|
|
[[blocks.segments]]
|
|
template = ' <b>{{ .HEAD }}</b>{{ if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} {{ .Working.String }}{{ end }}{{ if .Staging.Changed }} {{ .Staging.String }}{{ end }} '
|
|
foreground = 'p:green'
|
|
powerline_symbol = ''
|
|
background = 'p:surface'
|
|
type = 'git'
|
|
style = 'powerline'
|
|
foreground_templates = [
|
|
'{{ if or (.Working.Changed) (.Staging.Changed) }}p:black{{ end }}',
|
|
]
|
|
background_templates = [
|
|
'{{ if or (.Working.Changed) (.Staging.Changed) }}p:yellow{{ end }}',
|
|
]
|
|
|
|
[[blocks.segments]]
|
|
template = ' '
|
|
foreground = 'p:yellow'
|
|
powerline_symbol = ''
|
|
background = 'p:surface'
|
|
type = 'root'
|
|
style = 'powerline'
|
|
|
|
[[blocks.segments]]
|
|
leading_diamond = '<transparent,background></>'
|
|
trailing_diamond = ''
|
|
template = ' {{ if gt .Code 0 }}{{ else }}{{ end }} '
|
|
foreground = 'p:lavender'
|
|
background = 'p:surface'
|
|
type = 'status'
|
|
style = 'diamond'
|
|
background_templates = ['{{ if gt .Code 0 }}p:red{{ end }}']
|
|
foreground_templates = ['{{ if gt .Code 0 }}p:black{{ end }}']
|
|
|
|
[[blocks]]
|
|
type = 'rprompt'
|
|
|
|
[[blocks.segments]]
|
|
template = ' <b>{{ .Version }}</b>'
|
|
foreground = 'p:green'
|
|
background = 'transparent'
|
|
type = 'node'
|
|
style = 'plain'
|
|
|
|
[[blocks.segments]]
|
|
template = ' <b>{{ .Version }}</b>'
|
|
foreground = 'p:blue'
|
|
background = 'transparent'
|
|
type = 'python'
|
|
style = 'plain'
|
|
|
|
[[blocks.segments]]
|
|
template = ' <b>{{ .Version }}</b>'
|
|
foreground = 'p:red' # Rust looks great in Red/Maroon for Mocha
|
|
background = 'transparent'
|
|
type = 'rust'
|
|
style = 'plain'
|
|
|
|
[[blocks.segments]]
|
|
template = 'at <p:mauve><b>{{ .CurrentDate | date "15:04:05" }}</b></>'
|
|
foreground = 'p:white'
|
|
background = 'transparent'
|
|
type = 'time'
|
|
style = 'plain'
|
|
|
|
[[tooltips]]
|
|
leading_diamond = ''
|
|
trailing_diamond = ''
|
|
template = ' {{ .Profile }}{{ if .Region }}@{{ .Region }}{{ end }} '
|
|
foreground = 'p:black'
|
|
background = 'p:blue'
|
|
type = 'aws'
|
|
style = 'diamond'
|
|
tips = ['aws']
|