(require 'org-install) (require 'org) (setq inhibit-splash-screen t) (setq frame-title-format '("Emacs - " (buffer-file-name "%f" (dired-directory dired-directory "%b")))) (global-font-lock-mode t) (custom-set-faces '(flyspell-incorrect ((t (:inverse-video t))))) (line-number-mode 1) (column-number-mode 1) (load-library "paren") (show-paren-mode 1) (transient-mark-mode t) (require 'paren) (defalias 'yes-or-no-p 'y-or-n-p) (set-terminal-coding-system 'utf-8) (set-keyboard-coding-system 'utf-8) (prefer-coding-system 'utf-8) (setq ns-command-modifier 'meta ; Apple/Command key is Meta ns-alternate-modifier nil ; Option is the Mac Option key ns-use-mac-modifier-symbols nil ; display standard Emacs (and not standard Mac) modifier symbols ) (cua-mode t) (defun jump-mark () (interactive) (set-mark-command (point))) (defun beginning-of-defun-and-mark () (interactive) (push-mark (point)) (beginning-of-defun)) (defun end-of-defun-and-mark () (interactive) (push-mark (point)) (end-of-defun)) (global-set-key "\^c\^b" 'beginning-of-defun-and-mark) (global-set-key "\^c\^e" 'end-of-defun-and-mark) (global-set-key "\^c\^j" 'jump-mark) (global-set-key [S-f6] 'jump-mark) ;; jump from mark to mark (global-set-key "\M-g" 'goto-line) (global-set-key (kbd "C-+") 'text-scale-increase) (global-set-key (kbd "C--") 'text-scale-decrease) ;; C-x C-0 restores the default font size ;; Inspired from http://tex.stackexchange.com/questions/166681/changing-language-of-flyspell-emacs-with-a-shortcut ;; (defun spell (choice) ;; "Switch between language dictionaries." ;; (interactive "cChoose: (a) American | (f) Francais") ;; (cond ((eq choice ?1) ;; (setq flyspell-default-dictionary "american") ;; (setq ispell-dictionary "american") ;; (ispell-kill-ispell)) ;; ((eq choice ?2) ;; (setq flyspell-default-dictionary "francais") ;; (setq ispell-dictionary "francais") ;; (ispell-kill-ispell)) ;; (t (message "No changes have been made."))) ) (define-key global-map (kbd "C-c s a") (lambda () (interactive) (ispell-change-dictionary "american"))) (define-key global-map (kbd "C-c s f") (lambda () (interactive) (ispell-change-dictionary "francais"))) (define-key global-map (kbd "C-c s r") 'flyspell-region) (define-key global-map (kbd "C-c s b") 'flyspell-buffer) (define-key global-map (kbd "C-c s s") 'flyspell-mode) (global-set-key [f5] '(lambda () (interactive) (revert-buffer nil t nil))) (global-set-key (kbd "C-x g") 'magit-status) (global-set-key (kbd "C-x M-g") 'magit-dispatch-popup) ;; (global-magit-file-mode 1) (defun auto-fill-mode-on () (TeX-PDF-mode 1)) (add-hook 'tex-mode-hook 'TeX-PDF-mode-on) (add-hook 'latex-mode-hook 'TeX-PDF-mode-on) (setq TeX-PDF-mode t) (defun auto-fill-mode-on () (auto-fill-mode 1)) (add-hook 'text-mode-hook 'auto-fill-mode-on) (add-hook 'emacs-lisp-mode 'auto-fill-mode-on) (add-hook 'tex-mode-hook 'auto-fill-mode-on) (add-hook 'latex-mode-hook 'auto-fill-mode-on) (setq org-directory "~/org/") (setq org-hide-leading-stars t) (setq org-alphabetical-lists t) (setq org-src-fontify-natively t) ;; you want this to activate coloring in blocks (setq org-src-tab-acts-natively t) ;; you want this to have completion in blocks (setq org-hide-emphasis-markers t) ;; to hide the *,=, or / markers (setq org-pretty-entities t) ;; to have \alpha, \to and others display as utf8 http://orgmode.org/manual/Special-symbols.html (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-cc" 'org-capture) (global-set-key (kbd "C-c a") 'org-agenda) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map (kbd "C-c a") 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) (setq org-default-notes-file "~/org/notes.org") (define-key global-map "\C-cd" 'org-capture) (setq org-capture-templates (quote (("t" "Todo" entry (file+headline "~/org/liste.org" "Tasks") "* TODO %? %i %a" :prepend t) ("j" "Journal" entry (file+datetree "~/org/journal.org") "* %? Entered on %U %i %a")))) (setq org-agenda-include-all-todo t) (setq org-agenda-include-diary t) (global-set-key (kbd "C-c d") 'insert-date) (defun insert-date (prefix) "Insert the current date. With prefix-argument, use ISO format. With two prefix arguments, write out the day and month name." (interactive "P") (let ((format (cond ((not prefix) "** %Y-%m-%d") ((equal prefix '(4)) "[%Y-%m-%d]")))) (insert (format-time-string format)))) (global-set-key (kbd "C-c t") 'insert-time-date) (defun insert-time-date (prefix) "Insert the current date. With prefix-argument, use ISO format. With two prefix arguments, write out the day and month name." (interactive "P") (let ((format (cond ((not prefix) "[%H:%M:%S; %d.%m.%Y]") ((equal prefix '(4)) "[%H:%M:%S; %Y-%m-%d]")))) (insert (format-time-string format)))) (global-set-key (kbd "C-c l") 'org-store-link) (global-set-key (kbd "C-c ") 'outline-up-heading) (global-set-key (kbd "C-c ") 'outline-previous-visible-heading) (global-set-key (kbd "C-c ") 'outline-next-visible-heading) ;; In org-mode 9 you need to have #+PROPERTY: header-args :eval never-export ;; in the beginning or your document to tell org-mode not to evaluate every ;; code block every time you export. (setq org-confirm-babel-evaluate nil) ;; Do not ask for confirmation all the time!! (org-babel-do-load-languages 'org-babel-load-languages '( (shell . t) (python . t) (R . t) (ruby . t) (ocaml . t) (ditaa . t) (dot . t) (octave . t) (sqlite . t) (perl . t) (screen . t) (plantuml . t) (lilypond . t) (org . t) (makefile . t) )) (setq org-src-preserve-indentation t) (add-to-list 'org-structure-template-alist '("s" "#+begin_src ?\n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("m" "#+begin_src emacs-lisp :tangle init.el\n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("r" "#+begin_src R :results output :session *R* :exports both\n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("R" "#+begin_src R :results output graphics :file (org-babel-temp-file \"figure\" \".png\") :exports both :width 600 :height 400 :session *R* \n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("RR" "#+begin_src R :results output graphics :file (org-babel-temp-file (concat (file-name-directory (or load-file-name buffer-file-name)) \"figure-\") \".png\") :exports both :width 600 :height 400 :session *R* \n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("p" "#+begin_src python :results output :exports both\n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("P" "#+begin_src python :results output :session *python* :exports both\n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("PP" "#+begin_src python :results file :var matplot_lib_filename=(org-babel-temp-file \"figure\" \".png\") :exports both \nimport matplotlib.pyplot as plt\n\nimport numpy\nx=numpy.linspace(-15,15)\nplt.figure(figsize=(10,5))\nplt.plot(x,numpy.cos(x)/x)\nplt.tight_layout()\n\nplt.savefig(matplot_lib_filename)\nreturn(matplot_lib_filename)\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("b" "#+begin_src shell :results output :exports both\n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("B" "#+begin_src shell :session *shell* :results output :exports both \n\n#+end_src" "\n\n")) (add-to-list 'org-structure-template-alist '("g" "#+begin_src dot :results output graphics :file \"/tmp/graph.pdf\" :exports both digraph G { node [color=black,fillcolor=white,shape=rectangle,style=filled,fontname=\"Helvetica\"]; A[label=\"A\"] B[label=\"B\"] A->B }\n#+end_src" "\n\n")) (add-hook 'org-babel-after-execute-hook 'org-display-inline-images) (add-hook 'org-mode-hook 'org-display-inline-images) (add-hook 'org-mode-hook 'org-babel-result-hide-all)