Debian package: Use more debhelper magic
[conkeror.git] / contrib / config / common.js
blobe7b96af870d0c13149141eb1cd4a5246e6970289
2 // the default page for new buffers.
3 homepage = "about:blank";
6 // load urls from the command line in new buffers instead
7 // of new windows.
8 url_remoting_fn = load_url_in_new_buffer;
11 // load download buffers in the background in the current
12 // window, instead of in new windows.
13 download_buffer_automatic_open_target = OPEN_NEW_BUFFER_BACKGROUND;
16 // save a keystroke when selecting a dom node by number.
17 hints_auto_exit_delay = 500;
18 hints_ambiguous_auto_exit_delay = 500;
21 // default directory for downloads and shell commands.
22 cwd = get_home_directory();
23 cwd.append("downloads");
26 // automatically handle some mime types internally.
27 content_handlers.set("application/pdf", content_handler_save);
30 // external programs for handling various mime types.
31 external_content_handlers.set("application/pdf", "xpdf");
32 external_content_handlers.set("video/*", "urxvtc -e mplayer");
35 // use vi as external editor.
36 editor_shell_command = "urxvt -e vi";
39 // view source in your editor.
40 view_source_use_external_editor = true;
43 // let xkcd-mode put the funny alt text into the page.
44 xkcd_add_title = true;