6eab954afe
Helm seems to treat "!" specially in pattern matching, so having a ! in the pattern string when traversing directories is problematic. This change fixes #2737, because as far as I can tell "+" has no special meaning in a helm pattern. Of course, we can choose a different character, but I'm fond of "+" as representing "more layers here".
27 lines
No EOL
990 B
Text
27 lines
No EOL
990 B
Text
# -*- conf-unix -*-
|
|
|
|
text.color : dcdccc
|
|
|
|
patch.facecolor : 8cd0d3 # blue
|
|
patch.edgecolor : eeeeee
|
|
|
|
axes.facecolor : 383838 # axes background color
|
|
axes.edgecolor : bcbcbc # axes edge color
|
|
axes.grid : True # display grid or not
|
|
axes.labelcolor : dcdccc
|
|
axes.color_cycle : 8cd0d3, 7f9f7f, cc9393, 93e0e3, dc8cc3, f0dfaf, dcdccc
|
|
# (system default) blue, green, red, cyan, magenta, yellow, black
|
|
|
|
xtick.color : dcdccc # color of the tick labels
|
|
xtick.direction : in # direction: in or out
|
|
ytick.color : dcdccc # color of the tick labels
|
|
ytick.direction : in # direction: in or out
|
|
|
|
legend.fancybox : True # if True, use a rounded box for the
|
|
|
|
figure.facecolor : 3f3f3f # figure facecolor; 0.75 is scalar gray
|
|
figure.edgecolor : 383838 # figure edgecolor
|
|
|
|
# See also:
|
|
# * Sane color scheme for Matplotlib
|
|
# http://www.huyng.com/posts/sane-color-scheme-for-matplotlib/ |