upgrading copyright year from 2015 to 2016
[hkl.git] / Documentation / hkl-default.el
blob501c2faf90f28e4ebe2c96829fbd5c47911583ae
1 ;;; hkl-default.el --- Hkl specific emacsen startup code.
3 ;; Copyright (C) 2003-2016 Synchrotron SOLEIL
4 ;; L'Orme des Merisiers Saint-Aubin
5 ;; BP 48 91192 GIF-sur-YVETTE CEDEX
7 ;; Maintainer: Picca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>
8 ;; Keywords: hkl
10 ;; The hkl library is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; The hkl library is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with the hkl library. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This file contains startup code needed by all the various flavors
27 ;; of Emacs for a hkl library documentation generation.
29 ;;; Code:
31 (custom-set-variables
32 ;; custom-set-variables was added by Custom.
33 ;; If you edit it by hand, you could mess it up, so be careful.
34 ;; Your init file should contain only one such instance.
35 ;; If there is more than one, they won't work right.
36 '(inhibit-startup-screen t)
37 '(org-babel-load-languages
38 (quote
39 ((latex . t)
40 (python . t)
41 (emacs-lisp . t))))
42 '(org-confirm-babel-evaluate nil)
43 '(org-latex-listings (quote minted))
44 '(org-latex-minted-langs
45 (quote
46 ((emacs-lisp "common-lisp")
47 (cc "c++")
48 (cperl "perl")
49 (shell-script "bash")
50 (caml "ocaml")
51 (python "python"))))
52 '(org-latex-pdf-process
53 (quote
54 ("pdflatex -interaction nonstopmode --shell-escape -output-directory %o %f" "pdflatex -interaction nonstopmode --shell-escape -output-directory %o %f" "pdflatex -interaction nonstopmode --shell-escape -output-directory %o %f")))
55 '(org-export-with-sub-superscripts nil)
56 '(org-src-fontify-natively t))
57 (provide 'hkl-default)
58 ;;; hkl-default ends here