Last active
July 30, 2018 19:47
-
-
Save pjbull/58655b6341da6a522b732927cd5e0261 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Default color scheme for shell prompts", | |
"groups": { | |
"hostname": { "fg": "brightyellow", "bg": "mediumorange", "attrs": [] }, | |
"environment": { "fg": "white", "bg": "darkestgreen", "attrs": [] }, | |
"virtualenv": { "fg": "gray2", "bg": "solarized:green", "attrs": [] }, | |
"mode": { "fg": "darkestgreen", "bg": "brightgreen", "attrs": ["bold"] }, | |
"attached_clients": { "fg": "white", "bg": "darkestgreen", "attrs": [] }, | |
"gitstatus": { "fg": "gray8", "bg": "gray2", "attrs": [] }, | |
"gitstatus_branch": { "fg": "gray8", "bg": "gray2", "attrs": [] }, | |
"gitstatus_branch_clean": { "fg": "green", "bg": "gray2", "attrs": [] }, | |
"gitstatus_branch_dirty": { "fg": "gray8", "bg": "gray2", "attrs": [] }, | |
"gitstatus_branch_detached": { "fg": "mediumpurple", "bg": "gray2", "attrs": [] }, | |
"gitstatus_tag": { "fg": "darkcyan", "bg": "gray2", "attrs": [] }, | |
"gitstatus_behind": { "fg": "gray10", "bg": "gray2", "attrs": [] }, | |
"gitstatus_ahead": { "fg": "gray10", "bg": "gray2", "attrs": [] }, | |
"gitstatus_staged": { "fg": "green", "bg": "gray2", "attrs": [] }, | |
"gitstatus_unmerged": { "fg": "brightred", "bg": "gray2", "attrs": [] }, | |
"gitstatus_changed": { "fg": "mediumorange", "bg": "gray2", "attrs": [] }, | |
"gitstatus_untracked": { "fg": "brightestorange", "bg": "gray2", "attrs": [] }, | |
"gitstatus_stashed": { "fg": "darkblue", "bg": "gray2", "attrs": [] }, | |
"gitstatus:divider": { "fg": "gray8", "bg": "gray2", "attrs": [] } | |
}, | |
"mode_translations": { | |
"vicmd": { | |
"groups": { | |
"mode": {"fg": "darkestcyan", "bg": "white", "attrs": ["bold"]} | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"segments": { | |
"above": [ | |
{ | |
"left": [ | |
{ | |
"function": "powerline.segments.shell.mode" | |
}, | |
{ | |
"function": "powerline.segments.common.net.hostname", | |
"priority": 10 | |
}, | |
{ | |
"function": "powerline.segments.common.env.user", | |
"priority": 30 | |
}, | |
{ | |
"function": "powerline.segments.common.env.virtualenv", | |
"priority": 50 | |
}, | |
{ | |
"function": "powerline.segments.shell.cwd", | |
"priority": 10, | |
"args": { | |
"use_path_separator": true | |
} | |
}, | |
{ | |
"function": "powerline_gitstatus.gitstatus", | |
"priority": 40 | |
} | |
], | |
"right": [ | |
] | |
}, | |
{ | |
} | |
], | |
"left": [ | |
{ | |
"function": "powerline.segments.shell.mode" | |
}, | |
{ | |
"function": "powerline.segments.shell.last_pipe_status", | |
"priority": 10 | |
}, | |
{ | |
"function": "powerline.segments.common.time.date", | |
"args": { | |
"format": "$" | |
} | |
} | |
], | |
"right": [ | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment