Post by Markku SPost by rafPost by Markku SHow can I set a Jed color scheme without root access?
Have you tried putting them in your ~/.jedrc.
Of course. That worked with some old version but it doesn't anymore. I
guess that jed loads some preset color scheme after my jedrc.
I think I have the latest release(Jed 0.99.16). This is part of
of my .jedrc and it works.
% Color Settings
% Look at jed/lib/color/README for a description of predefined color
% schemes.
%set_color_scheme ("black3");
%set_color_scheme ("blue2");
%set_color_scheme ("abz");
$1 = "black"; $2 = "white";
set_color("menu", "yellow", "blue"); % menu bar
set_color("normal", "lightgray", ""); % default fg/bg
set_color("status", "yellow", "blue"); % status or mode line
set_color("region", $2, "green"); % for marking regions
set_color("operator", "yellow", ""); % +, -, etc..
set_color("number", "red", ""); % 10, 2.71,... TeX formulas
set_color("comment", "cyan", ""); % /* comment */
set_color("string", "cyan", ""); % "string" or 'char'
set_color("keyword", "red", ""); % if, while, unsigned,...
set_color("keyword1", "magenta", ""); % malloc, exit, etc...
set_color("delimiter", "red", ""); % {}[](),.;...