Copy a number of unicode values to powerline.json
This commit is contained in:
parent
b0093c6b67
commit
416a0efd84
|
@ -19,6 +19,33 @@
|
|||
"contents": " "
|
||||
},
|
||||
|
||||
"powerline.segments.common.cwd": {
|
||||
"args": {
|
||||
"ellipsis": "⋯"
|
||||
}
|
||||
},
|
||||
"powerline.segments.common.network_load": {
|
||||
"args": {
|
||||
"recv_format": "⬇ {value:>8}",
|
||||
"sent_format": "⬆ {value:>8}"
|
||||
}
|
||||
},
|
||||
"powerline.segments.common.now_playing": {
|
||||
"args": {
|
||||
"state_symbols": {
|
||||
"fallback": "♫",
|
||||
"play": "▶",
|
||||
"pause": "▮▮",
|
||||
"stop": "■"
|
||||
}
|
||||
}
|
||||
},
|
||||
"powerline.segments.common.battery": {
|
||||
"args": {
|
||||
"full_heart": "♥",
|
||||
"empty_heart": "♥"
|
||||
}
|
||||
},
|
||||
"powerline.segments.common.uptime": {
|
||||
"before": "⇑ "
|
||||
},
|
||||
|
@ -35,6 +62,43 @@
|
|||
"before": " "
|
||||
},
|
||||
|
||||
"powerline.segments.vim.mode": {
|
||||
"args": {
|
||||
"override": {
|
||||
"n": "NORMAL",
|
||||
"no": "N·OPER",
|
||||
"v": "VISUAL",
|
||||
"V": "V·LINE",
|
||||
"^V": "V·BLCK",
|
||||
"s": "SELECT",
|
||||
"S": "S·LINE",
|
||||
"^S": "S·BLCK",
|
||||
"i": "INSERT",
|
||||
"R": "REPLACE",
|
||||
"Rv": "V·RPLCE",
|
||||
"c": "COMMND",
|
||||
"cv": "VIM EX",
|
||||
"ce": "EX",
|
||||
"r": "PROMPT",
|
||||
"rm": "MORE",
|
||||
"r?": "CONFIRM",
|
||||
"!": "SHELL"
|
||||
}
|
||||
}
|
||||
},
|
||||
"powerline.segments.vim.visual_range": {
|
||||
"args": {
|
||||
"CTRL_V_text": "{rows} × {vcols}",
|
||||
"v_text_oneline": "C:{vcols}",
|
||||
"v_text_multiline": "L:{rows}",
|
||||
"V_text": "L:{rows}"
|
||||
}
|
||||
},
|
||||
"powerline.segments.vim.readonly_indicator": {
|
||||
"args": {
|
||||
"text": ""
|
||||
}
|
||||
},
|
||||
"powerline.segments.vim.modified_indicator": {
|
||||
"args": {
|
||||
"text": "+"
|
||||
|
|
Loading…
Reference in New Issue