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 29 30 31 32 33 34 35 36 37 38
|
// Sample qemacs config file
//
// copy it in ~/.qe/config
//
// You can call any Qemacs command with a C like syntax.
//
// underscores can be used in command names instead of dash.
//
// simple key definition
// C-key : Control + key
// M-key : Meta + key
// Read util.c to get all the key names
global_set_key("C-x s", "set-style");
// set X11 display size
set_display_size(80, 50);
// set default input method
//set_input_method("HebrewIsraeli");
// set X11 fonts and fall backs
set_system_font("fixed", "fixed,unifont");
set_system_font("sans", "helvetica,unifont");
set_system_font("serif", "times,unifont");
// simple styles
set_style("mode-line", "background-color", "white");
set_style("comment", "font-family", "sans");
set_style("comment", "font-size", "12");
set_style("comment", "font-style", "italic");
set_style("keyword", "font-family", "serif");
set_style("keyword", "font-size", "18");
set_style("function", "font-family", "serif");
set_style("function", "font-size", "18");
set_style("function", "font-weight", "bold");
|