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
|
Author: Daniel Baumann <daniel.baumann@progress-linux.org>
Description: Adding powerline-gitstatus colors to default colorscheme.
diff -Naurp powerline-gitstatus.temp/debian/powerline-gitstatus/usr/share/powerline/config_files/colorschemes/default.json powerline-gitstatus/debian/powerline-gitstatus/usr/share/powerline/config_files/colorschemes/default.json
--- powerline-gitstatus.temp/debian/powerline-gitstatus/usr/share/powerline/config_files/colorschemes/default.json
+++ powerline-gitstatus/debian/powerline-gitstatus/usr/share/powerline/config_files/colorschemes/default.json
@@ -52,6 +52,20 @@
"cwd:divider": { "fg": "gray7", "bg": "gray4", "attrs": [] },
"virtualenv": { "fg": "white", "bg": "darkcyan", "attrs": [] },
"attached_clients": { "fg": "gray8", "bg": "gray0", "attrs": [] },
- "workspace": "information:regular"
+ "workspace": "information:regular",
+ "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": [] }
}
}
|