1ef2c2fa046080239c324c40f01282b28a0d4c25
[dotfiles.git] / emacs.d / config.org
1 #+TITLE: Emacs Configuration file
2 #+AUTHOR: Peng Li
3 #+EMAIL: seudut@gmail.com
4
5 * Introduction
6
7 Most config are just copied from [[https://github.com/howardabrams/dot-files][howardabrams]]'s and [[https://github.com/abo-abo/oremacs][abo-abo's]] dotfiles
8
9 * Basic Settings
10
11 ** Setting loading Path
12
13 Set system PATH and emacs exec path
14
15 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
16
17   (setenv "PATH" (concat (getenv "PATH")
18                          ":" "/usr/local/bin"
19                          ":" "/Library/TeX/texbin"))
20   (setq exec-path (append exec-path '("/usr/local/bin")))
21   (setq exec-path (append exec-path '("/Library/TeX/texbin/")))
22
23 #+END_SRC
24
25 Set the emacs load path
26
27 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
28   ;; (add-to-list 'load-path "~/.emacs.d/elisp")
29 #+END_SRC
30
31 ** Package Initialization
32
33 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
34
35   (require 'package)
36
37   (setq package-archives '(("mepla" . "http://melpa.milkbox.net/packages/")
38                            ("gnu" . "http://elpa.gnu.org/packages/")
39                            ("org" . "http://orgmode.org/elpa/")))
40
41   (package-initialize)
42
43 #+END_SRC       
44
45 ** Window Setting
46
47 Disable scroll bar, tool-bar and menu-bar
48
49 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
50   (scroll-bar-mode 0)
51   (tool-bar-mode 0)
52   (menu-bar-mode 1)
53
54   ;; (setq debug-on-error t)
55   (setq inhibit-startup-message t)
56
57   (defalias 'yes-or-no-p 'y-or-n-p)
58   (show-paren-mode 1)
59   ;; don't backupf
60   (setq make-backup-files nil)
61 #+END_SRC
62
63 set custom file 
64
65 #+BEGIN_SRC emacs-lisp :tangle yes :results silent 
66
67   (setq custom-file "~/.emacs.d/custom.el")
68   (if (file-exists-p custom-file)
69       (load custom-file))
70
71 #+END_SRC
72
73 Switch the focus to help window when it appears
74
75 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
76
77   (setq help-window-select t)
78
79 #+END_SRC
80
81 Setting scroll right/left
82 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
83   ;  (global-set-key (kbd "C-,") 'scoll-left)
84   ;  (global-set-key (kbd "C-.") 'scoll-right)
85 #+END_SRC
86
87 Set default window size
88 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
89   (setq initial-frame-alist
90         '((width . 120)
91           (height . 50)))
92 #+END_SRC
93
94 Stop auto save
95 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
96   (setq auto-save-default nil)
97
98   ;; restore last session
99   ;; (desktop-save-mode t)
100 #+END_SRC
101
102 * Package Management Tools
103
104 ** Use-package
105
106 Using [[https://github.com/jwiegley/use-package][use-package]] to manage emacs packages
107
108 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
109
110   (unless (package-installed-p 'use-package)
111     (package-refresh-contents)
112     (package-install 'use-package))
113
114   (require 'use-package)
115
116 #+END_SRC
117
118 ** El-get
119
120 [[https://github.com/dimitri/el-get][El-get]] is package management tool, whicl allows to install external elisp package from any git repository not in mepla. 
121 Check out [[http://tapoueh.org/emacs/el-get.html][el-get]].
122
123 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
124
125   (use-package el-get
126     :ensure t
127     :init
128     (add-to-list 'load-path "~/.emacs.d/el-get"))
129
130 #+END_SRC
131
132 * Color and Fonts Settings
133
134 ** highlight current line
135
136 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
137
138   (global-hl-line-mode)
139
140 #+END_SRC
141
142 ** Smart Comments
143
144 [[https://github.com/paldepind/smart-comment][smart-comments]]
145
146 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
147
148   (use-package smart-comment
149     :ensure t
150     :bind ("M-;" . smart-conmment))
151
152 #+END_SRC
153
154 ** Font Setting
155
156 syntax highlighting
157
158 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
159
160   (global-font-lock-mode 1)
161
162 #+END_SRC
163
164 [[https://github.com/i-tu/Hasklig][Hasklig]] and Source Code Pro, defined fonts family
165
166 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
167
168   (if window-system
169       (defvar sd/fixed-font-family
170         (cond ((x-list-fonts "Hasklig")         "Hasklig")
171               ((x-list-fonts "Source Code Pro") "Source Code Pro:weight:light")
172               ((x-list-fonts "Anonymous Pro")   "Anonymous Pro")
173               ((x-list-fonts "M+ 1mn")          "M+ 1mn"))
174         "The fixed width font based on what is installed, `nil' if not defined."))
175
176 #+END_SRC
177
178 Setting the fonts 
179
180 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
181
182   (if window-system
183       (when sd/fixed-font-family
184         (set-frame-font sd/fixed-font-family)
185         (set-face-attribute 'default nil :font sd/fixed-font-family :height 130)
186         (set-face-font 'default sd/fixed-font-family)))
187
188 #+END_SRC
189
190 ** Color Theme
191
192 Loading theme should be after all required loaded, refere [[https://github.com/jwiegley/use-package][:defer]] in =use-package=
193
194 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
195
196   (setq vc-follow-symlinks t)
197
198   (use-package color-theme
199     :ensure t
200     :init (require 'color-theme)
201     :config (use-package color-theme-sanityinc-tomorrow
202               :ensure t
203               :no-require t
204               :config
205               (load-theme 'sanityinc-tomorrow-bright t)))
206
207   ;(eval-after-load 'color-theme
208   ;  (load-theme 'sanityinc-tomorrow-bright t))
209
210 #+END_SRC
211
212 Change the Org-mode colors 
213
214 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
215
216   (defun org-src-color-blocks-light ()
217     "Colors the block headers and footers to make them stand out more for lighter themes"
218     (interactive)
219     (custom-set-faces
220      '(org-block-begin-line
221       ((t (:underline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
222      '(org-block-background
223        ((t (:background "#FFFFEA"))))
224      '(org-block
225        ((t (:background "#FFFFEA"))))
226      '(org-block-end-line
227        ((t (:overline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
228
229      '(mode-line-buffer-id ((t (:foreground "#005000" :bold t))))
230      '(which-func ((t (:foreground "#008000"))))))
231
232   (defun org-src-color-blocks-dark ()
233     "Colors the block headers and footers to make them stand out more for dark themes"
234     (interactive)
235     (custom-set-faces
236      '(org-block-begin-line
237        ((t (:foreground "#008ED1" :background "#002E41"))))
238      '(org-block-background
239        ((t (:background "#000000"))))
240      '(org-block
241        ((t (:background "#000000"))))
242      '(org-block-end-line
243        ((t (:foreground "#008ED1" :background "#002E41"))))
244
245      '(mode-line-buffer-id ((t (:foreground "black" :bold t))))
246      '(which-func ((t (:foreground "green"))))))
247
248   (org-src-color-blocks-dark)
249
250 #+END_SRC
251
252 improve color for org-mode
253 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
254   (deftheme ha/org-theme "Sub-theme to beautify org mode")
255
256   (if window-system
257       (defvar sd/variable-font-tuple
258         (cond ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))
259               ((x-list-fonts "Lucida Grande")   '(:font "Lucida Grande"))
260               ((x-list-fonts "Verdana")         '(:font "Verdana"))
261               ((x-family-fonts "Sans Serif")    '(:family "Sans Serif"))
262               (nil (warn "Cannot find a Sans Serif Font.  Install Source Sans Pro.")))
263         "My variable width font available to org-mode files and whatnot."))
264
265   (defun sd/org-color ()
266     (let* ((sd/fixed-font-tuple (list :font sd/fixed-font-family))
267            (base-font-color     (face-foreground 'default nil 'default))
268            (background-color    (face-background 'default nil 'default))
269            (primary-color       (face-foreground 'mode-line nil))
270            (secondary-color     (face-background 'secondary-selection nil 'region))
271            (base-height         (face-attribute 'default :height))
272            (headline           `(:inherit default :weight bold :foreground ,base-font-color)))
273       (custom-theme-set-faces 'ha/org-theme
274                               `(org-agenda-structure ((t (:inherit default :height 2.0 :underline nil))))
275                               `(org-verbatim ((t (:inherit 'fixed-pitched :foreground "#aef"))))
276                               `(org-table ((t (:inherit 'fixed-pitched))))
277                               `(org-block ((t (:inherit 'fixed-pitched))))
278                               `(org-block-background ((t (:inherit 'fixed-pitched))))
279                               `(org-block-begin-line ((t (:inherit 'fixed-pitched))))
280                               `(org-block-end-line ((t (:inherit 'fixed-pitched))))
281                               `(org-level-8 ((t (,@headline ,@sd/variable-font-tuple))))
282                               `(org-level-7 ((t (,@headline ,@sd/variable-font-tuple))))
283                               `(org-level-6 ((t (,@headline ,@sd/variable-font-tuple))))
284                               `(org-level-5 ((t (,@headline ,@sd/variable-font-tuple))))
285                               `(org-level-4 ((t (,@headline ,@sd/variable-font-tuple
286                                                             :height ,(round (* 1.1 base-height))))))
287                               `(org-level-3 ((t (,@headline ,@sd/variable-font-tuple
288                                                             :height ,(round (* 1.25 base-height))))))
289                               `(org-level-2 ((t (,@headline ,@sd/variable-font-tuple
290                                                             :height ,(round (* 1.5 base-height))))))
291                               `(org-level-1 ((t (,@headline ,@sd/variable-font-tuple
292                                                             :height ,(round (* 1.75 base-height))))))
293                               `(org-document-title ((t (,@headline ,@sd/variable-font-tuple :height 1.5 :underline nil)))))))
294
295
296 #+END_SRC
297
298 ** Rainbow-delimiter
299
300 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
301
302   (use-package rainbow-delimiters
303     :ensure t
304     :init
305     (add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
306
307 #+END_SRC
308
309 ** page-break-lines
310
311 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
312
313   (use-package page-break-lines
314     :ensure t
315     :config
316     (turn-on-page-break-lines-mode))
317
318 #+END_SRC
319
320 ** rainbow-mode
321
322 Enable rainbow mode in emacs lisp mode
323
324 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
325   (use-package rainbow-mode
326     :ensure t
327   ;  :init
328   ;  (add-hook emacs-lisp-mode-hook 'rainbow-mode)
329     )
330
331 #+END_SRC
332
333 * Mode-line
334
335 ** clean mode line
336
337 clean mode line, Refer to [[https://www.masteringemacs.org/article/hiding-replacing-modeline-strings][Marstering Emacs]]
338
339 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
340   (defvar mode-line-cleaner-alist
341     `((auto-complete-mode . " Î±")
342       (yas/minor-mode . " Ï…")
343       (paredit-mode . " Ï€")
344       (eldoc-mode . "")
345       (abbrev-mode . "")
346       (projectile-mode . "")
347       (ivy-mode . "")
348       (undo-tree-mode . "")
349       ;; default is WK
350       (which-key-mode . "")
351       ;; default is SP
352       (smartparens-mode . "")
353       ;; default is LR
354       (linum-relative-mode . "")
355       ;; default is ARev
356       (auto-revert-mode . "")
357       ;; default is Ind
358       (org-indent-mode . "")
359       ;; default is  Fly
360       (flyspell-mode . "")
361       ;; Major modes
362       (lisp-interaction-mode . "λ")
363       (hi-lock-mode . "")
364       (python-mode . "Py")
365       (emacs-lisp-mode . "EL")
366       (eshell-mode . "ε")
367       (nxhtml-mode . "nx"))
368     "Alist for `clean-mode-line'.
369
370   When you add a new element to the alist, keep in mind that you
371   must pass the correct minor/major mode symbol and a string you
372   want to use in the modeline *in lieu of* the original.")
373
374
375   (defun clean-mode-line ()
376     (interactive)
377     (loop for cleaner in mode-line-cleaner-alist
378           do (let* ((mode (car cleaner))
379                    (mode-str (cdr cleaner))
380                    (old-mode-str (cdr (assq mode minor-mode-alist))))
381                (when old-mode-str
382                    (setcar old-mode-str mode-str))
383                  ;; major mode
384                (when (eq mode major-mode)
385                  (setq mode-name mode-str)))))
386
387
388   (add-hook 'after-change-major-mode-hook 'clean-mode-line)
389 #+END_SRC
390
391 ** Powerline mode
392
393 Install powerline mode [[https://github.com/milkypostman/powerline][powerline]]
394
395 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
396   (use-package powerline
397     :ensure t
398     :config
399     ;; (powerline-center-theme)
400     )
401
402   ;; (use-package smart-mode-line
403   ;;   :ensure t)
404   ;; (use-package smart-mode-line-powerline-theme
405   ;;   :ensure t)
406 #+END_SRC
407
408 Revised powerline-center-theme
409 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
410   (defun sd/powerline-simpler-vc (s)
411     (if s
412         (replace-regexp-in-string "Git[:-]" "" s)
413       s))
414
415   (defface sd/powerline-active1 '((t (:background "yellow" :foreground "black" :inherit mode-line)))
416     "My Powerline face 1 based on powerline-active1."
417     :group 'powerline)
418
419   (defface sd/buffer-modified-active1 '((t (:background "red" :foreground "black" :inherit mode-line)))
420     "My Powerline face 1 based on powerline-active1."
421     :group 'powerline)
422
423   (defface sd/buffer-view-active1 '((t (:background "green" :foreground "black" :inherit mode-line)))
424     "My Powerline face 1 based on powerline-active1."
425     :group 'powerline)
426
427   (defface sd/mode-line-buffer-id
428     '((t (:background "yellow" :foreground "black" :inherit mode-line-buffer-id)))
429     "My powerline mode-line face, based on mode-line-buffer-id"
430     :group 'powerline)
431
432   ;; Don't show buffer modified for scratch and eshell mode
433   (defun sd/buffer-show-modified ()
434     "Dot not show modified indicator for buffers"
435     (interactive)
436     (unless (or (string-match "*scratch*" (buffer-name))
437                 (equal major-mode 'eshell-mode))
438       t))
439
440   (defun sd/powerline-center-theme_revised ()
441     "Setup a mode-line with major and minor modes centered."
442     (interactive)
443     (setq-default mode-line-format
444                   '("%e"
445                     (:eval
446                      (let* ((active (powerline-selected-window-active))
447                             (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'mode-line-buffer-id-inactive))
448                             (mode-line (if active 'mode-line 'mode-line-inactive))
449                             (my-face1 (if active 'sd/powerline-active1 'powerline-inactive1))
450                             (my-face-buffer-modified (if (and (sd/buffer-show-modified) (buffer-modified-p)) 
451                                                          'sd/buffer-modified-active1
452                                                        (if buffer-read-only 'sd/buffer-view-active1
453                                                          my-face1)))
454                             (face1 (if active 'powerline-active1 'powerline-inactive1))
455                             (face2 (if active 'powerline-active2 'powerline-inactive2))
456                             (separator-left (intern (format "powerline-%s-%s"
457                                                             (powerline-current-separator)
458                                                             (car powerline-default-separator-dir))))
459                             (separator-right (intern (format "powerline-%s-%s"
460                                                              (powerline-current-separator)
461                                                              (cdr powerline-default-separator-dir))))
462                             (lhs (list (powerline-raw "%* " my-face-buffer-modified 'l)
463                                        ;; (powerline-buffer-size mode-line 'l)
464                                        (powerline-buffer-id mode-line-buffer-id 'l)
465                                        (powerline-raw " " my-face1)
466                                        (funcall separator-left my-face1 face1)
467                                        (powerline-narrow face1 'l)
468                                        ;; (powerline-vc face1)
469                                        (sd/powerline-simpler-vc (powerline-vc face1))))
470                             (rhs (list (powerline-raw global-mode-string face1 'r)
471                                        (powerline-raw "%4l" face1 'r)
472                                        (powerline-raw ":" face1)     
473                                        (powerline-raw "%3c" face1 'r)
474                                        (funcall separator-right face1 my-face1)
475                                        ;; (powerline-raw " " my-face1)
476                                        (powerline-raw (format-time-string " %I:%M %p  ") my-face1 'r)
477                                        ;; (powerline-raw "%6p" my-face1 'r)
478                                        ;; (powerline-hud my-face1 face1 )
479                                        ))
480                             (center (list (powerline-raw " " face1)
481                                           (funcall separator-left face1 face2)
482                                           (when (and (boundp 'erc-track-minor-mode) erc-track-minor-mode)
483                                             (powerline-raw erc-modified-channels-object face2 'l))
484                                           (powerline-major-mode face2 'l)
485                                           (powerline-process face2)
486                                           (powerline-raw " :" face2)
487                                           (powerline-minor-modes face2 'l)
488                                           (powerline-raw " " face2)
489                                           (funcall separator-right face2 face1))))
490                        (concat (powerline-render lhs)
491                                (powerline-fill-center face1 (/ (powerline-width center) 2.0))
492                                (powerline-render center)
493                                (powerline-fill face1 (powerline-width rhs))
494                                (powerline-render rhs)))))))
495
496   (sd/powerline-center-theme_revised)
497 #+END_SRC
498
499 Fix the issue in mode line when showing triangle 
500 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
501   (setq ns-use-srgb-colorspace nil)
502 #+END_SRC
503
504 set height in mode line
505 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
506   (set-variable 'powerline-height 14)
507   (set-variable 'powerline-text-scale-factor (/ (float 100) 140))
508   ;; (custom-set-variables
509   ;;  '(powerline-height 14)
510   ;;  '(powerline-text-scale-factor (/ (float 100) 140)))
511   ;; 100/140;0.8
512   (set-face-attribute 'mode-line nil :height 100)
513 #+END_SRC
514
515 * IDO & SMEX
516
517 ** IDO
518
519 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
520
521   (use-package ido
522     :ensure t
523     :init (setq ido-enable-flex-matching t
524                 ido-ignore-extensions t
525                 ido-use-virtual-buffers t
526                 ido-everywhere t)
527     :config
528     (ido-mode 1)
529     (ido-everywhere 1)
530     (add-to-list 'completion-ignored-extensions ".pyc"))
531
532   (icomplete-mode t)
533
534 #+END_SRC
535
536 ** FLX
537
538 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
539
540   (use-package flx-ido
541     :ensure t
542     :init (setq ido-enable-flex-matching t
543                 ido-use-faces nil)
544     :config (flx-ido-mode 1))
545
546 #+END_SRC
547
548 ** IDO-vertically
549 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
550   (use-package ido-vertical-mode
551     :ensure t
552     :init
553     (setq ido-vertical-define-keys 'C-n-C-p-up-and-down)
554     :config
555     (ido-vertical-mode 1))
556 #+END_SRC
557
558 ** SMEX
559
560 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
561
562   (use-package smex
563     :ensure t
564     :init (smex-initialize)
565     :bind
566     ("M-x" . smex)
567     ("M-X" . smex-major-mode-commands))
568
569 #+END_SRC
570
571 ** Ido-ubiquitous
572
573 Use [[https://github.com/DarwinAwardWinner/ido-ubiquitous][ido-ubiquitous]] for ido everywhere. It makes =describe-function= can also use ido
574
575 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
576
577   (use-package ido-ubiquitous
578     :ensure t
579     :init
580     (setq magit-completing-read-function 'magit-ido-completing-read)
581     (setq gnus-completing-read-function 'gnus-ido-completing-read)
582     :config
583     (ido-ubiquitous-mode 1))
584
585 #+END_SRC
586
587 ** Ido-exit-target
588 [[https://github.com/waymondo/ido-exit-target][ido-exit-target]] let you open file/buffer on =other-windows= when call =ido-switch-buffer=
589 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
590   (use-package ido-exit-target
591     :ensure t
592     :init
593     (mapcar (lambda (map)
594               (define-key map (kbd "C-j") #'ido-exit-target-split-window-right)
595               (define-key map (kbd "C-k") #'ido-exit-target-split-window-below))
596             (list ido-buffer-completion-map
597                   ;; ido-common-completion-map
598                   ido-file-completion-map
599                   ido-file-dir-completion-map)))
600 #+END_SRC
601
602 * Normal Text Operation
603 ** Edit
604 *** undo-tree
605 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
606   (use-package undo-tree
607     :ensure t
608     :config
609     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
610     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
611     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
612     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
613     (global-undo-tree-mode 1))
614
615   (global-set-key (kbd "s-u") 'undo-tree-visualize)
616 #+END_SRC
617
618 *** flyspell
619 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
620 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
621   (setenv "DICPATH" "/usr/local/share/hunspell")
622
623   (when (executable-find "hunspell")
624     (setq-default ispell-program-name "hunspell")
625     (setq ispell-really-hunspell t))
626
627   ;; (defun text-mode-hook-setup ()
628   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
629   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
630   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
631   ;; (add-hook 'text-mode-hook 'flyspell-mode)
632
633   ;; enable flyspell check on comments and strings in progmamming modes
634   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
635
636   ;; I don't use the default mappings
637   (with-eval-after-load 'flyspell
638     (define-key flyspell-mode-map (kbd "C-;") nil)
639     (define-key flyspell-mode-map (kbd "C-,") nil)
640     (define-key flyspell-mode-map (kbd "C-.") nil))
641 #+END_SRC
642
643 Make flyspell enabled for org-mode, see [[http://emacs.stackexchange.com/questions/9333/how-does-one-use-flyspell-in-org-buffers-without-flyspell-triggering-on-tangled][here]]
644 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
645   ;; NO spell check for embedded snippets
646   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
647     (let ((rlt ad-return-value)
648           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
649           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
650           old-flag
651           b e)
652       (when ad-return-value
653         (save-excursion
654           (setq old-flag case-fold-search)
655           (setq case-fold-search t)
656           (setq b (re-search-backward begin-regexp nil t))
657           (if b (setq e (re-search-forward end-regexp nil t)))
658           (setq case-fold-search old-flag))
659         (if (and b e (< (point) e)) (setq rlt nil)))
660       (setq ad-return-value rlt)))
661 #+END_SRC
662
663 *** Expand-region
664 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
665   (use-package expand-region
666     :ensure t
667     :config
668     (global-set-key (kbd "C-=") 'er/expand-region))
669 #+END_SRC
670
671 * Key bindings
672
673 ** Esc on Minibuffer
674
675 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
676
677 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
678
679   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
680   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
681   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
682   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
683   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
684   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
685   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
686   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
687   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
688
689   ;; Also map s-h same as C-g
690   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
691
692 #+END_SRC
693
694 ** =Super= bindings for file, buffer and windows
695
696 Some global bindings on =Super=, on Mac, it is =Command=
697
698 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
699   (defun sd/delete-current-window ()
700     (interactive)
701     (if (> (length (window-list)) 1)
702         (delete-window)
703       (message "Only one Windows now!")))
704
705   (global-set-key (kbd "s-h") 'keyboard-quit)
706   (global-set-key (kbd "s-j") 'ido-switch-buffer)
707   (global-set-key (kbd "s-k") 'ido-find-file)
708   (global-set-key (kbd "s-l") 'sd/delete-current-window)
709   ;; s-l  -->  goto-line
710   ;; (global-set-key (kbd "s-/") 'swiper)
711   ;; s-;  -->
712   ;; s-'  -->  'next-multiframe-window
713   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
714
715   (global-set-key (kbd "s-f") 'projectile-find-file)
716
717   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
718
719   (global-set-key (kbd "s-n") 'persp-next)
720   (global-set-key (kbd "s-p") 'persp-prev)
721
722   (global-set-key (kbd "s-=") 'text-scale-increase)
723   (global-set-key (kbd "s--") 'text-scale-decrease)
724
725   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
726
727
728   ;; someothers default mapping on super (command) key
729   ;; s-s save-buffer
730   ;; s-k kill-this-buffer
731
732
733   ;; s-h  -->  ns-do-hide-emacs
734   ;; s-j  -->  ido-switch-buffer  +
735   ;; s-k  -->  kill-this-buffer
736   ;; s-l  -->  goto-line
737   ;; s-;  -->  undefined
738   ;; s-'  -->  next-multiframe-window
739   ;; s-ret --> toggle-frame-fullscreen +
740
741   ;; s-y  -->  ns-paste-secondary
742   ;; s-u  -->  revert-buffer
743   ;; s-i  -->  undefined - but used for iterm globally
744   ;; s-o  -->  used for emacs globally
745   ;; s-p  -->  projectile-persp-switch-project  +  
746   ;; s-[  -->  next-buffer  +    
747   ;; s-]  -->  previous-buffer +
748
749   ;; s-0  -->  undefined
750   ;; s-9  -->  undefined
751   ;; s-8  -->  undefined
752   ;; s-7  -->  undefined
753   ;; s-6  -->  undefined
754   ;; s--  -->  center-line
755   ;; s-=  -->  undefined
756
757   ;; s-n  -->  make-frame
758   ;; s-m  -->  iconify-frame
759   ;; s-b  -->  undefined
760   ;; s-,  -->  customize
761   ;; s-.  -->  undefined
762   ;; s-/  -->  undefined
763
764   ;; s-g  -->  isearch-repeat-forward
765   ;; s-f  -->  projectile-find-file   +
766   ;; s-d  -->  isearch-repeat-background
767   ;; s-s  -->  save-buffer
768   ;; s-a  -->  make-whole-buffer
769
770   ;; s-b  -->  undefined
771   ;; s-v  -->  yank
772   ;; s-c  -->  ns-copy-including-secondary
773
774   ;; s-t  -->  ns-popup-font-panel
775   ;; s-r  -->  undefined
776   ;; s-e  -->  isearch-yanqk-kill
777   ;; s-w  -->  delete-frame
778   ;; s-q  -->  same-buffers-kill-emacs
779
780   ;; s-`  -->  other-frame
781 #+END_SRC
782
783 ** Search Replace and highlight
784 *** Occur
785 Occur search key bindings
786 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
787   (add-hook 'occur-hook (lambda ()
788                           (switch-to-buffer-other-window "*Occur*")
789                           (define-key occur-mode-map (kbd "C-o") nil)))
790   ;; auto select occur window
791
792   (define-key occur-mode-map (kbd "C-n")
793     (lambda ()
794       (interactive)
795       (occur-next)
796       (occur-mode-goto-occurrence-other-window)
797       (recenter)
798       (other-window 1)))
799
800   (define-key occur-mode-map (kbd "C-p")
801     (lambda ()
802       (interactive)
803       (occur-prev)
804       (occur-mode-goto-occurrence-other-window)
805       (recenter)
806       (other-window 1)))
807
808   (use-package color-moccur
809     :ensure t
810     :commands (isearch-moccur isearch-all)
811     :init
812     (setq isearch-lazy-highlight t)
813     :config
814     (use-package moccur-edit))
815 #+END_SRC
816
817 *** swiper
818 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
819   (use-package swiper
820     :ensure t)
821
822   (ivy-mode 1)
823   (setq ivy-use-virtual-buffers t)
824   (global-set-key (kbd "s-/") 'swiper)
825
826   (use-package counsel
827     :ensure t
828     :defer t)
829   ;;* 
830   ;; (global-set-key "\C-s" 'swiper)
831   ;; (global-set-key (kbd "C-c C-r") 'ivy-resume)
832   ;; (global-set-key (kbd "<f6>") 'ivy-resume)
833   (global-set-key (kbd "M-x") 'counsel-M-x)
834   ;; ;; (global-set-key (kbd "C-x C-f") 'counsel-find-file)
835   (global-set-key (kbd "C-h f") 'counsel-describe-function)
836   (global-set-key (kbd "C-h v") 'counsel-describe-variable)
837   ;; (global-set-key (kbd "<f1> l") 'counsel-load-library)
838   ;; (global-set-key (kbd "<f2> i") 'counsel-info-lookup-symbol)
839   ;; (global-set-key (kbd "<f2> u") 'counsel-unicode-char)
840   ;; (global-set-key (kbd "C-c g") 'counsel-git)
841   ;; (global-set-key (kbd "C-c j") 'counsel-git-grep)
842   ;; (global-set-key (kbd "C-c k") 'counsel-ag)
843   ;; (global-set-key (kbd "C-x l") 'counsel-locate)
844   ;; (global-set-key (kbd "C-S-o") 'counsel-rhythmbox)
845   ;; ;; (define-key read-expression-map (kbd "C-r") 'counsel-expression-history)
846
847   (set-face-attribute
848    'ivy-current-match nil
849    :background "Orange"
850    :foreground "black")
851 #+END_SRC
852
853 *** =M-s= prefix
854 use the prefix =M-s= for searching in buffers
855 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
856   (defun sd/make-keymap (key bindings)
857     (setq keymap (make-sparse-keymap))
858     (dolist (binding bindings)
859       (define-key keymap (car binding) (cdr binding)))
860     (global-set-key key keymap))
861
862   (use-package highlight-symbol
863     :ensure t)
864
865   (sd/make-keymap "\M-s"
866                   '(("w" . save-buffer)
867                     ;; ("\M-w" . save-buffer)
868                     ("e" . revert-buffer)
869                     ("s" . isearch-forward-regexp)
870                     ("\M-s" . isearch-forward-regexp)
871                     ("r" . isearch-backward-regexp)
872                     ("." . isearch-forward-symbol-at-point)
873                     ("o" . occur)
874                     ;; ("h" . highlight-symbol-at-point)
875                     ("h" . highlight-symbol)
876                     ("m" . highlight-regexp)
877                     ("l" . highlight-lines-matching-regexp)
878                     ("M" . unhighlight-regexp)
879                     ("f" . keyboard-quit)
880                     ("q" . keyboard-quit)))
881
882   ;; search and replace and highlight
883   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
884   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
885   (global-set-key (kbd "s-[") 'highlight-symbol-next)
886   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
887   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
888
889
890   (define-key minibuffer-local-map "\M-s" nil)
891
892   (set-face-background 'ido-first-match "yellow")
893
894   ;; M-s M-w              eww-search-words
895
896   ;; M-c
897   ;; M-r
898   ;; M-t
899   ;; M-u, 
900 #+END_SRC
901
902 * Org-mode Settings
903
904 ** Org-mode Basic setting
905
906 Always indents header, and hide header leading starts so that no need type =#+STATUP: indent= 
907
908 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
909   (use-package org
910     :ensure t
911     :init
912     (setq org-startup-indented t)
913     (setq org-hide-leading-starts t)
914     (setq org-src-fontify-natively t)
915     (setq org-src-tab-acts-natively t)
916     (setq org-confirm-babel-evaluate nil)
917     (setq org-use-speed-commands t)
918     (setq org-completion-use-ido t))
919
920   (org-babel-do-load-languages
921    'org-babel-load-languages
922    '((python . t)
923      (C . t)
924      (perl . t)
925      (calc . t)
926      (latex . t)
927      (java . t)
928      (ruby . t)
929      (lisp . t)
930      (scheme . t)
931      (sh . t)
932      (sqlite . t)
933      (js . t)
934      (gnuplot . t)
935      (ditaa . t)))
936
937   ;; use current window for org source buffer editting
938   (setq org-src-window-setup 'current-window )
939
940   (define-key org-mode-map (kbd "C-'") nil)
941   ;; C-M-i is mapped to imenu globally
942   (define-key org-mode-map (kbd "C-M-i") nil)
943
944   ;; set the ditta.jar path
945   (setq org-ditaa-jar-path "/usr/local/Cellar/ditaa/0.9/libexec/ditaa0_9.jar")
946   (unless 
947       (file-exists-p org-ditaa-jar-path)
948     (error "seudut: ditaa.jar not found at %s " org-ditaa-jar-path))
949 #+END_SRC
950
951 ** Org-bullets
952
953 use [[https://github.com/sabof/org-bullets][org-bullets]] package to show utf-8 charactes
954
955 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
956   (use-package org-bullets
957     :ensure t
958     :init
959     (add-hook 'org-mode-hook
960               (lambda ()
961                 (org-bullets-mode t))))
962
963   (setq org-bullets-bullet-list '("⦿" "✪" "â—‰" "â—‹" "â–º" "â—†"))
964
965   ;; increase font size when enter org-src-mode
966   (add-hook 'org-src-mode-hook (lambda () (text-scale-increase 2)))
967 #+END_SRC
968
969 ** Worf Mode
970
971 [[https://github.com/abo-abo/worf][worf]] mode is an extension of vi-like binding for org-mode. 
972 In =worf-mode=, it is mapping =[=, =]= as =worf-backward= and =worf-forward= in global, wich
973 cause we cannot input =[= and =]=, so here I unset this mappings. And redifined this two to
974 =M-[= and =M-]=. see this [[https://github.com/abo-abo/worf/issues/19#issuecomment-223756599][issue]]
975
976 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
977
978   (use-package worf
979     :ensure t
980     :commands worf-mode
981     :init (add-hook 'org-mode-hook 'worf-mode)
982     ;; :config
983     ;; (define-key worf-mode-map "[" nil)
984     ;; (define-key worf-mode-map "]" nil)
985     ;; (define-key worf-mode-map (kbd "M-[") 'worf-backward)
986     ;; (define-key worf-mode-map (kbd "M-]") 'worf-forward)
987     )
988
989 #+END_SRC
990
991 ** Get Things Done
992
993 Refer to [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
994 *** basic setup
995
996 standard key binding
997
998 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
999   (global-set-key "\C-cl" 'org-store-link)
1000   (global-set-key "\C-ca" 'org-agenda)
1001   (global-set-key "\C-cb" 'org-iswitchb)
1002 #+END_SRC
1003
1004 *** Plain List 
1005
1006 Replace the list bullet =-=, =+=,  with =•=, a litter change based [[https://github.com/howardabrams/dot-files/blob/master/emacs-org.org][here]]
1007
1008 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1009   ;; (use-package org-mode
1010   ;;   :init
1011   ;;   (font-lock-add-keywords 'org-mode
1012   ;;    '(("^ *\\([-+]\\) "
1013   ;;           (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))))
1014 #+END_SRC
1015  
1016 *** Todo Keywords
1017
1018 refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][fancy todo states]], 
1019
1020 To track TODO state changes, the =!= is to insert a timetamp, =@= is to insert a note with
1021 timestamp for the state change.
1022
1023 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1024     ;; (setq org-todo-keywords
1025     ;;        '((sequence "☛ TODO(t)" "|" "✔ DONE(d)")
1026     ;;          (sequence "âš‘ WAITING(w)" "|")
1027     ;;          (sequence "|" "✘ CANCELLED(c)")))
1028   ; (setq org-todo-keyword-faces
1029   ;        (quote ("TODO" .  (:foreground "red" :weight bold))
1030   ;               ("NEXT" .  (:foreground "blue" :weight bold))
1031   ;               ("WAITING" . (:foreground "forest green" :weight bold))
1032   ;               ("DONE" .  (:foreground "magenta" :weight bold))
1033   ;               ("CANCELLED" . (:foreground "forest green" :weight bold))))
1034
1035
1036   (setq org-todo-keywords
1037         (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)")
1038                 ;; (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")
1039                 (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" ))))
1040
1041   (setq org-todo-keyword-faces
1042         (quote (("TODO" :foreground "red" :weight bold)
1043                 ("NEXT" :foreground "blue" :weight bold)
1044                 ("DONE" :foreground "forest green" :weight bold)
1045                 ("WAITING" :foreground "orange" :weight bold)
1046                 ("HOLD" :foreground "magenta" :weight bold)
1047                 ("CANCELLED" :foreground "forest green" :weight bold)
1048                 ;; ("MEETING" :foreground "forest green" :weight bold)
1049                 ;; ("PHONE" :foreground "forest green" :weight bold)
1050                 )))
1051 #+END_SRC
1052
1053 Fast todo selections
1054
1055 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1056   (setq org-use-fast-todo-selection t)
1057   (setq org-treat-S-cursor-todo-selection-as-state-change nil)
1058 #+END_SRC
1059
1060 TODO state triggers and tags, [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
1061
1062 - Moving a task to =CANCELLED=, adds a =CANCELLED= tag
1063 - Moving a task to =WAITING=, adds a =WAITING= tag
1064 - Moving a task to =HOLD=, add =HOLD= tags
1065 - Moving a task to =DONE=, remove =WAITING=, =HOLD= tag
1066 - Moving a task to =NEXT=, remove all waiting/hold/cancelled tags
1067
1068 This tags are used to filter tasks in agenda views
1069 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1070   (setq org-todo-state-tags-triggers
1071         (quote (("CANCELLED" ("CANCELLED" . t))
1072                 ("WAITING" ("WAITING" . t))
1073                 ("HOLD" ("WAITING") ("HOLD" . t))
1074                 (done ("WAITING") ("HOLD"))
1075                 ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
1076                 ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
1077                 ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
1078 #+END_SRC
1079
1080 Logging Stuff 
1081 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1082   ;; log time when task done
1083   ;; (setq org-log-done (quote time))
1084   ;; save clocking into to LOGBOOK
1085   (setq org-clock-into-drawer t)
1086   ;; save state change notes and time stamp into LOGBOOK drawer
1087   (setq org-log-into-drawer t)
1088   (setq org-clock-into-drawer "CLOCK")
1089 #+END_SRC
1090
1091 *** Tags
1092 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1093   (setq org-tag-alist (quote ((:startgroup)
1094                               ("@office" . ?e)
1095                               ("@home" . ?h)
1096                               (:endgroup)
1097                               ("WAITING" . ?w)
1098                               ("HOLD" . ?h)
1099                               ("CANCELLED" . ?c))))
1100
1101   ;; Allow setting single tags without the menu
1102   (setq org-fast-tag-selection-single-key (quote expert))
1103 #+END_SRC
1104
1105 *** Capture - Refile - Archive
1106
1107 Capture lets you quickly store notes with little interruption of your work flow.
1108
1109 **** Capture Templates
1110
1111 When a new taks needs to be added, categorize it as 
1112
1113 All captured file which need next actions are stored in =refile.org=, 
1114 - A new task / note (t) =refile.org=
1115 - A work task in office =office.org=
1116 - A jourenl =diary.org=
1117 - A new habit (h) =refile.org=
1118
1119 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1120   (setq org-directory "~/org")
1121   (setq org-default-notes-file "~/org/refile.org")
1122   (setq sd/org-diary-file "~/org/diary.org")
1123
1124   (global-set-key (kbd "C-c c") 'org-capture)
1125
1126   (setq org-capture-templates
1127         (quote (("t" "Todo" entry (file org-default-notes-file)
1128                  "* TODO %?\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1129                 ("n" "Note" entry (file org-default-notes-file)
1130                  "* %? :NOTE:\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1131                 ("j" "Journal" entry (file+datetree sd/org-diary-file)
1132                  "* %?\n:LOGBOOK:\n:END:" :clock-in t :clock-resume t)
1133                 ("h" "Habit" entry (file org-default-notes-file)
1134                  "* NEXT %?\n:LOGBOOK:\n%a\nSCHEDULED: %(format-time-string \"%<<%Y-%m-%d %a .+1d/3d>>\")\n:END:\n:PROPERTIES:\n:STYLE: habit\n:REPEAT_TO_STATE: NEXT\n:END:\n "))))
1135 #+END_SRC
1136
1137 **** Refiling Tasks
1138
1139 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1140   (setq org-refile-targets (quote (;; (nil :maxlevel . 9)
1141                                    (org-agenda-files :maxlevel . 9))))
1142
1143   (setq org-refile-use-outline-path t)
1144
1145   (setq org-refile-allow-creating-parent-nodes (quote confirm))
1146 #+END_SRC
1147
1148 *** Agenda Setup
1149 Setting agenda files and the agenda view
1150 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1151   (setq org-agenda-files (quote ("~/org/gtd.org"
1152                                  "~/org/work.org")))
1153
1154   ;; only show today's tasks in agenda view
1155   (setq org-agenda-span 'day)
1156   ;; Use current windows for agenda view
1157   (setq org-agenda-window-setup 'current-window)
1158
1159   ;; show all feature entries for repeating tasks,
1160   ;; this is already setting by default
1161   (setq org-agenda-repeating-timestamp-show-all t)
1162
1163   ;; Show all agenda dates - even if they are empty
1164   (setq org-agenda-show-all-dates t)
1165 #+END_SRC
1166
1167 ** Export PDF
1168
1169 Install MacTex-basic and some tex packages
1170
1171 #+BEGIN_SRC bash 
1172
1173   sudo tlmgr update --self
1174
1175   sudo tlmgr install titlesec framed threeparttable wrapfig multirow enumitem bbding titling tabu mdframed tcolorbox textpos import varwidth needspace tocloft ntheorem environ trimspaces collection-fontsrecommended capt-of
1176
1177 #+END_SRC
1178
1179 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1180   ;; ;; allow for export=>beamer by placing
1181
1182   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
1183   ;; #+LaTeX_CLASS: beamer in org files
1184   (unless (boundp 'org-export-latex-classes)
1185     (setq org-export-latex-classes nil))
1186   (add-to-list 'org-export-latex-classes
1187     ;; beamer class, for presentations
1188     '("beamer"
1189        "\\documentclass[11pt]{beamer}\n
1190         \\mode<{{{beamermode}}}>\n
1191         \\usetheme{{{{beamertheme}}}}\n
1192         \\usecolortheme{{{{beamercolortheme}}}}\n
1193         \\beamertemplateballitem\n
1194         \\setbeameroption{show notes}
1195         \\usepackage[utf8]{inputenc}\n
1196         \\usepackage[T1]{fontenc}\n
1197         \\usepackage{hyperref}\n
1198         \\usepackage{color}
1199         \\usepackage{listings}
1200         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
1201     frame=single,
1202     basicstyle=\\small,
1203     showspaces=false,showstringspaces=false,
1204     showtabs=false,
1205     keywordstyle=\\color{blue}\\bfseries,
1206     commentstyle=\\color{red},
1207     }\n
1208         \\usepackage{verbatim}\n
1209         \\institute{{{{beamerinstitute}}}}\n          
1210          \\subject{{{{beamersubject}}}}\n"
1211
1212        ("\\section{%s}" . "\\section*{%s}")
1213  
1214        ("\\begin{frame}[fragile]\\frametitle{%s}"
1215          "\\end{frame}"
1216          "\\begin{frame}[fragile]\\frametitle{%s}"
1217          "\\end{frame}")))
1218
1219     ;; letter class, for formal letters
1220
1221     (add-to-list 'org-export-latex-classes
1222
1223     '("letter"
1224        "\\documentclass[11pt]{letter}\n
1225         \\usepackage[utf8]{inputenc}\n
1226         \\usepackage[T1]{fontenc}\n
1227         \\usepackage{color}"
1228  
1229        ("\\section{%s}" . "\\section*{%s}")
1230        ("\\subsection{%s}" . "\\subsection*{%s}")
1231        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
1232        ("\\paragraph{%s}" . "\\paragraph*{%s}")
1233        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
1234
1235
1236   (require 'ox-md)
1237   (require 'ox-beamer)
1238
1239   (setq org-latex-pdf-process
1240         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1241           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1242           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
1243
1244   (setq TeX-parse-self t)
1245
1246   (setq TeX-PDF-mode t)
1247   (add-hook 'LaTeX-mode-hook
1248             (lambda ()
1249               (LaTeX-math-mode)
1250               (setq TeX-master t)))
1251
1252 #+END_SRC
1253
1254 ** others
1255
1256 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1257
1258 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1259
1260   (add-to-list 'org-structure-template-alist
1261                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1262   (add-to-list 'org-structure-template-alist
1263                '("S" "#+BEGIN_SRC sh\n?\n#+END_SRC"))
1264   (add-to-list 'org-structure-template-alist
1265                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1266
1267 #+END_SRC
1268
1269 * Magit
1270 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1271 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1272 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1273   (use-package magit
1274     :ensure t
1275     :init
1276     ;; don't ask me to confirm the unsaved change 
1277     (setq magit-save-repository-buffers nil)
1278     :commands magit-status magit-blame
1279     :config
1280     (dolist (map (list magit-status-mode-map
1281                        magit-log-mode-map
1282                        magit-diff-mode-map
1283                        magit-staged-section-map))
1284       (define-key map "j" 'magit-section-forward)
1285       (define-key map "k" 'magit-section-backward)
1286       (define-key map "D" 'magit-discard)
1287       (define-key map "O" 'magit-discard-file)
1288       (define-key map "n" nil)
1289       (define-key map "p" nil)
1290       (define-key map "v" 'recenter-top-bottom)
1291       (define-key map "i" 'magit-section-toggle)))
1292 #+END_SRC
1293
1294 * Eshell
1295 *** Eshell alias
1296 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1297   (defalias 'e 'find-file)
1298   (defalias 'ff 'find-file)
1299   (defalias 'ee 'find-files)
1300 #+END_SRC
1301
1302 *** Eshell erase buffer
1303 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1304   (defun sd/eshell-clear-buffer ()
1305     "Clear eshell buffer"
1306     (interactive)
1307     (let ((inhibit-read-only t))
1308       (erase-buffer)
1309       (eshell-send-input)))
1310
1311    (add-hook 'eshell-mode-hook (lambda ()
1312                                 (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1313 #+END_SRC
1314
1315 *** Toggle Eshell
1316 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1317 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1318   (defun sd/window-has-eshell ()
1319     "Check if current windows list has a eshell buffer, and return the window"
1320     (interactive)
1321     (let ((ret nil))
1322       (walk-windows (lambda (window)
1323                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1324                                  'eshell-mode)
1325                           (setq ret window)))
1326                     nil nil)
1327       ret))
1328
1329   (defun sd/toggle-eshell-here ()
1330     "Toggle a eshell buffer vertically"
1331     (interactive)
1332     (if (sd/window-has-eshell)
1333         (if (equal major-mode 'eshell-mode)
1334             (progn
1335               (if (equal (length (window-list)) 1)
1336                   (mode-line-other-buffer)
1337                 (delete-window)))
1338           (select-window (sd/window-has-eshell)))
1339       (progn
1340         (let ((dir default-directory))
1341           
1342           (split-window-vertically (- (/ (window-total-height) 3)))
1343           (other-window 1)
1344           (unless (and (boundp 'eshell-buffer-name) (get-buffer eshell-buffer-name))
1345             (eshell))
1346           (switch-to-buffer eshell-buffer-name)
1347           (goto-char (point-max))
1348           (eshell-kill-input)
1349           (insert (format "cd %s" dir))
1350           (eshell-send-input)))))
1351
1352   (global-unset-key (kbd "M-`"))
1353   (global-set-key (kbd "M-`") 'sd/toggle-eshell-here)
1354 #+END_SRC
1355
1356 *** TODO smart display
1357 * Misc Settings
1358
1359 ** [[https://github.com/abo-abo/hydra][Hydra]]
1360 *** hydra install
1361 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1362   (use-package hydra
1363     :ensure t)
1364   ;; disable new line in minibuffer when hint hydra
1365   (setq hydra-lv nil)
1366 #+END_SRC
1367
1368 *** Font Zoom
1369 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1370   (defhydra sd/font-zoom (global-map "<f2>")
1371     "zoom"
1372     ("g" text-scale-increase "in")
1373     ("l" text-scale-decrease "out"))
1374 #+END_SRC
1375
1376 *** Windmove Splitter
1377
1378 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1379
1380 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1381
1382   (defun hydra-move-splitter-left (arg)
1383     "Move window splitter left."
1384     (interactive "p")
1385     (if (let ((windmove-wrap-around))
1386           (windmove-find-other-window 'right))
1387         (shrink-window-horizontally arg)
1388       (enlarge-window-horizontally arg)))
1389
1390   (defun hydra-move-splitter-right (arg)
1391     "Move window splitter right."
1392     (interactive "p")
1393     (if (let ((windmove-wrap-around))
1394           (windmove-find-other-window 'right))
1395         (enlarge-window-horizontally arg)
1396       (shrink-window-horizontally arg)))
1397
1398   (defun hydra-move-splitter-up (arg)
1399     "Move window splitter up."
1400     (interactive "p")
1401     (if (let ((windmove-wrap-around))
1402           (windmove-find-other-window 'up))
1403         (enlarge-window arg)
1404       (shrink-window arg)))
1405
1406   (defun hydra-move-splitter-down (arg)
1407     "Move window splitter down."
1408     (interactive "p")
1409     (if (let ((windmove-wrap-around))
1410           (windmove-find-other-window 'up))
1411         (shrink-window arg)
1412       (enlarge-window arg)))
1413
1414 #+END_SRC
1415
1416 *** hydra misc
1417 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1418   (defhydra sd/hydra-misc (:color red :columns nil)
1419     "Miscellaneous Commands"
1420     ("e" eshell "eshell" :exit t)
1421     ("p" (lambda ()
1422            (interactive)
1423            (if (not (eq nil (get-buffer "*Packages*")))
1424                (switch-to-buffer "*Packages*")
1425              (package-list-packages)))
1426      "list-package" :exit t)
1427     ("g" magit-status "git-status" :exit t)
1428     ("'" mode-line-other-buffer "last buffer" :exit t)
1429     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1430     ("m" man "man" :exit t)
1431     ("d" dired-jump "dired" :exit t)
1432     ("b" ibuffer "ibuffer" :exit t)
1433     ("q" nil "quit")
1434     ("f" nil "quit"))
1435
1436   (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1437 #+END_SRC
1438
1439 *** hydra launcher
1440 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1441   (defhydra sd/hydra-launcher (:color blue :columns 2)
1442     "Launch"
1443     ("e" emms "emms" :exit t)
1444     ("q" nil "cancel"))
1445 #+END_SRC
1446
1447 ** Line Number
1448
1449 Enable linum mode on programming modes
1450
1451 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1452   (add-hook 'prog-mode-hook 'linum-mode)
1453   ;; (add-hook 'prog-mode-hook (lambda ()
1454   ;;                             (setq-default indicate-empty-lines t)))
1455 #+END_SRC
1456
1457 Fix the font size of line number
1458
1459 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1460
1461   (defun fix-linum-size ()
1462        (interactive)
1463        (set-face-attribute 'linum nil :height 110))
1464
1465   (add-hook 'linum-mode-hook 'fix-linum-size)
1466
1467 #+END_SRC
1468
1469 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1470
1471 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1472
1473   (use-package linum-relative
1474     :ensure t
1475     :config
1476     (defun linum-new-mode ()
1477       "If line numbers aren't displayed, then display them.
1478   Otherwise, toggle between absolute and relative numbers."
1479       (interactive)
1480       (if linum-mode
1481           (linum-relative-toggle)
1482         (linum-mode 1)))
1483
1484     :bind
1485     ("A-k" . linum-new-mode))
1486
1487   ;; auto enable linum-new-mode in programming modes
1488   (add-hook 'prog-mode-hook 'linum-relative-mode)
1489
1490 #+END_SRC
1491
1492 ** Save File Position
1493
1494 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1495
1496   (require 'saveplace)
1497   (setq-default save-place t)
1498   (setq save-place-forget-unreadable-files t)
1499   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1500
1501 #+END_SRC
1502
1503 ** Multi-term
1504
1505 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1506
1507   (use-package multi-term
1508     :ensure t)
1509
1510 #+END_SRC
1511
1512 ** ace-link
1513
1514 [[https://github.com/abo-abo/ace-link][ace-link]] is a package written by [[https://github.com/abo-abo][Oleh Krehel]]. It is convenient to jump to link in help mode, info-mode, etc
1515 Type =o= to go to the link
1516
1517 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1518
1519   (use-package ace-link
1520     :ensure t
1521     :init
1522     (ace-link-setup-default))
1523
1524 #+END_SRC
1525
1526 ** Emux
1527
1528 [[https://github.com/re5et/emux][emux]] is 
1529
1530 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1531
1532   (el-get-bundle re5et/emux)
1533
1534 #+END_SRC
1535
1536 ** Smart Parens
1537
1538 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1539
1540   (use-package smartparens
1541     :ensure t
1542     :config
1543     (progn
1544       (require 'smartparens-config)
1545       (add-hook 'prog-mode-hook 'smartparens-mode)))
1546
1547 #+END_SRC
1548
1549 ** Ace-Windows
1550
1551 [[https://github.com/abo-abo/ace-window][ace-window]] 
1552
1553 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1554
1555   (use-package ace-window
1556     :ensure t
1557     :defer t
1558   ;  :init
1559   ;  (global-set-key (kbd "M-o") 'ace-window)
1560     :config
1561     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1562
1563 #+END_SRC
1564
1565 ** Projectile
1566
1567 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1568
1569   (use-package projectile
1570     :ensure t
1571     :init
1572     (setq projectile-enable-caching t)
1573     :config
1574     (projectile-global-mode t))
1575
1576   (use-package persp-projectile
1577     :ensure t
1578     :config
1579     (persp-mode)
1580     :bind
1581     (:map projectile-mode-map
1582           ("s-t" . projectile-persp-switch-project)))
1583
1584   ;; projectile-find-file
1585   ;; projectile-switch-buffer
1586   ;; projectile-find-file-other-window
1587 #+END_SRC
1588
1589 ** Which key
1590
1591 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1592
1593 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1594
1595   (use-package which-key
1596     :ensure t
1597     :config
1598     (which-key-mode))
1599
1600 #+END_SRC
1601
1602 ** Emms
1603
1604 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
1605
1606 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1607   (use-package emms
1608     :ensure t
1609     :init
1610     (setq emms-source-file-default-directory "~/Music/")
1611     :config
1612     (emms-standard)
1613     (emms-default-players)
1614     (define-emms-simple-player mplayer '(file url)
1615       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
1616                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
1617                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
1618                     ".m4a" ".flv" ".ogv" ".pls"))
1619       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
1620     (emms-history-load))
1621
1622 #+END_SRC
1623
1624 ** GnoGo
1625
1626 Play Go in Emacs, gnugo xpm refert [[https://github.com/okanotor/dotemacs/blob/f95b774cb292d1169748bc0a62ba647bbd8c0652/etc/my-inits/my-inits-gnugo.el][to here]]. start at image display mode and grid mode
1627
1628 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1629
1630   (use-package gnugo
1631     :ensure t
1632     :defer t
1633     :init
1634     (require 'gnugo-imgen)
1635     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
1636     (add-hook 'gnugo-start-game-hook '(lambda ()
1637                                         (gnugo-image-display-mode)
1638                                         (gnugo-grid-mode)))
1639       :config
1640     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
1641
1642 #+END_SRC
1643
1644 ** Tabbar
1645
1646 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1647
1648   ;; (use-package tabbar-ruler
1649   ;;   :ensure t
1650   ;;   :init
1651   ;;   (setq tabbar-ruler-global-tabbar t)
1652   ;;   (setq tabbar-ruler-global-ruler t)
1653   ;;   (setq tabbar-ruler-popu-menu t)
1654   ;;   (setq tabbar-ruler-popu-toolbar t)
1655   ;;   (setq tabbar-use-images t)
1656   ;;   :config
1657   ;;   (tabbar-ruler-group-by-projectile-project)
1658   ;;   (global-set-key (kbd "s-1") 'tabbar-forward-group)
1659   ;;   (global-set-key (kbd "s-2") 'tabbar-ruler-forward))
1660
1661 #+END_SRC
1662
1663 ** View only for some directory
1664 When see function by =C-h f=, and visit the source code, I would like the buffer is read only. See [[http://emacs.stackexchange.com/questions/3676/how-to-enter-view-only-mode-when-browsing-emacs-source-code-from-help/3681#3681][here]]
1665 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1666   (dir-locals-set-class-variables
1667    'emacs
1668    '((nil . ((buffer-read-only . t)
1669              (show-trailing-whitespace . nil)
1670              (tab-width . 8)
1671              (eval . (whitespace-mode -1))))))
1672
1673   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1674   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1675   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1676   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1677   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1678 #+END_SRC
1679
1680 ** Info plus
1681 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1682   (el-get-bundle info+
1683     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1684     (require 'info+))
1685 #+END_SRC
1686
1687 ** TODO bookmark
1688
1689 ** TODO Calendar
1690 ** advice info
1691 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1692   (defun sd/info-mode ()
1693     (interactive)
1694     (unless (equal major-mode 'Info-mode)
1695       (unless (> (length (window-list)) 1)
1696         (split-window-right))
1697       (other-window 1)
1698       ;; (info)
1699       ))
1700
1701   ;; (global-set-key (kbd "C-h i") 'sd/info-mode)
1702
1703   ;; open Info buffer in other window instead of current window
1704   (defadvice info (before my-info (&optional file buf) activate)
1705     (sd/info-mode))
1706
1707   (defadvice Info-exit (after my-info-exit activate)
1708     (sd/delete-current-window))
1709 #+END_SRC
1710
1711 ** TODO Man mode
1712 Color for Man-mode
1713
1714 ** TODO swiper to occur
1715
1716 ** TODO UTF8
1717 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1718   ;; (set-language-environment "UTF-8")
1719   ;; (set-default-coding-systems 'utf-8)
1720 #+END_SRC
1721
1722 ** Demo It
1723 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1724   ;; (el-get-bundle howardabrams/demo-it)
1725
1726   (use-package org-tree-slide
1727     :ensure t)
1728
1729   ;; (use-package yasnippet
1730   ;;   :ensure t)
1731 #+END_SRC
1732
1733 ** Presentation
1734 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1735   (use-package org-tree-slide
1736     :ensure
1737     :config
1738     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1739     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1740     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1741     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1742 #+END_SRC
1743
1744 * dired
1745 =C-o= is defined as a global key for window operation, here unset it in dired mode
1746 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1747   (use-package dired
1748     :config
1749     (require 'dired-x)
1750     (setq dired-omit-mode t)
1751     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1752     (add-hook 'dired-mode-hook (lambda ()
1753                                  (define-key dired-mode-map (kbd "C-o") nil)
1754                                  (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1755                                  (define-key dired-mode-map (kbd "DEL") (lambda () (interactive) (find-alternate-file "..")))
1756                                  (dired-omit-mode))))
1757 #+END_SRC
1758
1759 Dired+
1760 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1761   (use-package dired+
1762     :ensure t
1763     :init
1764     (setq diredp-hide-details-initially-flag nil)
1765     :config
1766     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1767     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1768     (define-key dired-mode-map (kbd "g") 'dired-goto-file))
1769 #+END_SRC
1770
1771 * Completion
1772 company mode and company-statistics
1773 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1774   (use-package company
1775     :ensure t
1776     :diminish company-mode
1777     :init (setq company-idle-delay 0.1)
1778     :config
1779     (global-company-mode))
1780
1781   (use-package company-statistics
1782     :ensure t
1783     :config
1784     (company-statistics-mode))
1785 #+END_SRC
1786
1787 * Programming Language
1788 ** Emacs Lisp
1789 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1790   (use-package color-identifiers-mode
1791     :ensure t
1792     :init
1793     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1794
1795     :diminish color-identifiers-mode)
1796
1797   (global-prettify-symbols-mode t)
1798 #+END_SRC
1799
1800 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1801 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1802 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1803   (use-package lispy
1804     :ensure t
1805     :init
1806     (eval-after-load "lispy"
1807       `(progn
1808          (define-key lispy-mode-map (kbd "M-o") nil)))
1809     :config
1810     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1811 #+END_SRC
1812
1813 ** Perl
1814 *** CPerl mode
1815 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1816 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1817   (defalias 'perl-mode 'cperl-mode)
1818
1819   ;; (setq cperl-hairy t)
1820   ;; Turns on most of the CPerlMode options
1821   (setq cperl-auto-newline t)
1822   (setq cperl-highlight-variables-indiscriminately t)
1823   ;(setq cperl-indent-level 4)
1824   ;(setq cperl-continued-statement-offset 4)
1825   (setq cperl-close-paren-offset -4)
1826   (setq cperl-indent-parents-as-block t)
1827   (setq cperl-tab-always-indent t)
1828   ;(setq cperl-brace-offset  0)
1829
1830   (add-hook 'cperl-mode-hook
1831             '(lambda ()
1832                (cperl-set-style "C++")))
1833
1834   (defalias 'perldoc 'cperl-perldoc)
1835 #+END_SRC
1836
1837 *** Perl template
1838 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1839 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1840   (eval-after-load 'autoinsert
1841     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1842        '(
1843          "Empty"
1844          "#!/usr/bin/perl -w" \n
1845          \n
1846          "use strict;" >  \n \n
1847          > _
1848          )))
1849 #+END_SRC
1850
1851 *** Perl Keywords
1852 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1853   (font-lock-add-keywords 'cperl-mode
1854                           '(("\\(say\\)" . cperl-nonoverridable-face)
1855                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1856                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1857                             ("\n" . font-lock-constant-face)
1858                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1859
1860     ;; (font-lock-add-keywords 'Man-mode
1861     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1862
1863 #+END_SRC
1864
1865 *** Run Perl
1866 Change the compile-command to set the default command run when call =compile=
1867 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1868 to call =compilation=  interactively.
1869 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1870   (defun my-perl-hook ()
1871     (progn
1872       (setq-local compilation-read-command nil)
1873       (set (make-local-variable 'compile-command)
1874            (concat "/usr/bin/perl "
1875                    (if buffer-file-name
1876                        (shell-quote-argument buffer-file-name))))
1877       (local-set-key (kbd "s-r")
1878                      (lambda ()
1879                        (interactive)
1880                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1881                        (call-interactively 'compile)))))
1882
1883   (add-hook 'cperl-mode-hook 'my-perl-hook)
1884 #+END_SRC
1885
1886 ** C & C++
1887 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1888   (setq c-default-style "stroustrup"
1889         c-basic-offset 4)
1890 #+END_SRC
1891
1892 * Compile
1893 Set the environments vairables in compilation mode
1894 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1895   (use-package compile
1896     :commands compile
1897     :config
1898     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
1899     (setq compilation-auto-jump-to-first-error t)
1900     (setq compilation-auto-jump-to-next t)
1901     (setq compilation-scroll-output 'first-error))
1902
1903   ;; super-r to compile
1904   (with-eval-after-load "compile"
1905     (define-key compilation-mode-map (kbd "C-o") nil)
1906     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
1907     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
1908     (define-key compilation-mode-map (kbd "r") #'recompile))
1909 #+END_SRC
1910
1911 * Auto-Insert
1912 ** Enable auto-insert mode
1913 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1914   (auto-insert-mode t)
1915   (setq auto-insert-query nil)
1916 #+END_SRC
1917
1918 ** C++ Auto Insert
1919 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1920   (eval-after-load 'autoinsert
1921     '(define-auto-insert '("\\.cpp\\'" . "C++ skeleton")
1922        '(
1923          "Short description:"
1924          "/*"
1925          "\n * " (file-name-nondirectory (buffer-file-name))
1926          "\n */" > \n \n
1927          "#include <iostream>" \n
1928          "#include \""
1929          (file-name-sans-extension
1930           (file-name-nondirectory (buffer-file-name)))
1931          ".hpp\"" \n \n
1932          "using namespace std;" \n \n
1933          "int main ()"
1934          "\n{" \n 
1935          > _ \n
1936          "return 1;"
1937          "\n}" > \n
1938          )))
1939
1940   (eval-after-load 'autoinsert
1941     '(define-auto-insert '("\\.c\\'" . "C skeleton")
1942        '(
1943          "Short description:"
1944          "/*\n"
1945          " * " (file-name-nondirectory (buffer-file-name)) "\n"
1946          " */" > \n \n
1947          "#include <stdio.h>" \n
1948          "#include \""
1949          (file-name-sans-extension
1950           (file-name-nondirectory (buffer-file-name)))
1951          ".h\"" \n \n
1952          "int main ()\n"
1953          "{" \n
1954          > _ \n
1955          "return 1;\n"
1956          "}" > \n
1957          )))
1958 #+END_SRC
1959
1960 ** Python template
1961 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1962   (eval-after-load 'autoinsert
1963     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
1964        '(
1965          "Empty"
1966          "#import os,sys" \n
1967          \n \n
1968          )))
1969 #+END_SRC
1970
1971 ** Elisp 
1972 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
1973 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
1974 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1975   (eval-after-load 'autoinsert
1976     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
1977        '(
1978          "Short description: "
1979          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
1980          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
1981          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
1982          "\n
1983   ;; Copyright (C) " (format-time-string "%Y") "  "
1984          (getenv "ORGANIZATION") | (progn user-full-name) "
1985
1986   ;; Author: " (user-full-name)
1987          '(if (search-backward "&" (line-beginning-position) t)
1988               (replace-match (capitalize (user-login-name)) t t))
1989          '(end-of-line 1) " <" (progn user-mail-address) ">
1990   ;; Keywords: "
1991          '(require 'finder)
1992          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
1993          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
1994                            finder-known-keywords)
1995                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
1996                               finder-known-keywords
1997                               "\n"))
1998          ((let ((minibuffer-help-form v2))
1999             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2000           str ", ") & -2 "
2001
2002   \;; This program is free software; you can redistribute it and/or modify
2003   \;; it under the terms of the GNU General Public License as published by
2004   \;; the Free Software Foundation, either version 3 of the License, or
2005   \;; (at your option) any later version.
2006
2007   \;; This program is distributed in the hope that it will be useful,
2008   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2009   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2010   \;; GNU General Public License for more details.
2011
2012   \;; You should have received a copy of the GNU General Public License
2013   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2014
2015   \;;; Commentary:
2016
2017   \;; " _ "
2018
2019   \;;; Code:
2020
2021
2022   \(provide '"
2023          (file-name-base)
2024          ")
2025   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2026 #+END_SRC
2027
2028 ** Org file template
2029 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2030   (eval-after-load 'autoinsert
2031     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2032        '(
2033          "title: "
2034          "#+TITLE: " str (make-string 30 ?\s) > \n
2035          "#+AUTHOR: Peng Li\n"
2036          "#+EMAIL: seudut@gmail.com\n"
2037          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2038          > \n
2039          > _)))
2040 #+END_SRC
2041
2042 * Markdown mode
2043 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2044   (use-package markdown-mode
2045     :ensure t
2046     :commands (markdown-mode gfm-mode)
2047     :mode (("README\\.md\\'" . gfm-mode)
2048            ("\\.md\\'" . markdown-mode)
2049            ("\\.markdown\\'" . markdown-mode))
2050     :init (setq markdown-command "multimarkdown"))
2051 #+END_SRC
2052
2053 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2054   (use-package markdown-preview-eww
2055     :ensure t)
2056 #+END_SRC
2057
2058 * Gnus
2059 ** Gmail setting 
2060 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2061 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2062   (setq user-mail-address "seudut@gmail.com"
2063         user-full-name "Peng Li")
2064
2065   (setq gnus-select-method
2066         '(nnimap "gmail"
2067                  (nnimap-address "imap.gmail.com")
2068                  (nnimap-server-port "imaps")
2069                  (nnimap-stream ssl)))
2070
2071   (setq smtpmail-smtp-service 587
2072         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2073
2074   ;; Use gmail sending mail
2075   (setq message-send-mail-function 'smtpmail-send-it
2076         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2077         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2078         smtpmail-default-smtp-server "smtp.gmail.com"
2079         smtpmail-smtp-server "smtp.gmail.com"
2080         smtpmail-smtp-service 587
2081         starttls-use-gnutls t)
2082 #+END_SRC
2083
2084 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2085 and =<PASSWORD>= with the password
2086 #+BEGIN_EXAMPLE
2087   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2088   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2089 #+END_EXAMPLE
2090
2091 Then Run =M-x gnus=
2092
2093 ** Group buffer
2094 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2095   (use-package gnus
2096     :init
2097     (setq gnus-permanently-visible-groups "\.*")
2098     :config
2099     (cond (window-system
2100            (setq custom-background-mode 'light)
2101            (defface my-group-face-1
2102              '((t (:foreground "Red" :bold t))) "First group face")
2103            (defface my-group-face-2
2104              '((t (:foreground "DarkSeaGreen4" :bold t)))
2105              "Second group face")
2106            (defface my-group-face-3
2107              '((t (:foreground "Green4" :bold t))) "Third group face")
2108            (defface my-group-face-4
2109              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2110            (defface my-group-face-5
2111              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2112     (setq gnus-group-highlight
2113           '(((> unread 200) . my-group-face-1)
2114             ((and (< level 3) (zerop unread)) . my-group-face-2)
2115             ((< level 3) . my-group-face-3)
2116             ((zerop unread) . my-group-face-4)
2117             (t . my-group-face-5))))
2118
2119
2120   ;; key-
2121   (add-hook 'gnus-group-mode-hook (lambda ()
2122                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2123                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2124                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2125                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2126 #+END_SRC
2127
2128 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2129   (setq gnus-fetch-old-headers 't)
2130
2131
2132
2133   (setq gnus-extract-address-components
2134         'mail-extract-address-components)
2135   ;; summary buffer 
2136   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2137   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2138                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2139                                       (604800 . "%a, %b %-d")
2140                                       (15778476 . "%b %-d")
2141                                       (t . "%Y-%m-%d")))
2142
2143   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2144   (setq gnus-unread-mark ?\.)
2145   (setq gnus-use-correct-string-widths t)
2146
2147   ;; thread
2148   (setq gnus-thread-hide-subtree t)
2149
2150   ;; (with-eval-after-load 'gnus-summary-mode
2151   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2152
2153   (add-hook 'gnus-summary-mode-hook (lambda ()
2154                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2155
2156
2157 #+END_SRC
2158
2159 ** Windows layout
2160 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2161 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2162   (gnus-add-configuration
2163    '(summary
2164      (horizontal 1.0
2165                  (vertical 35
2166                            (group 1.0))
2167                  (vertical 1.0
2168                            (summary 1.0 poine)))))
2169
2170   (gnus-add-configuration
2171    '(article
2172      (horizontal 1.0
2173                  (vertical 35
2174                            (group 1.0))
2175                  (vertical 1.0
2176                            (summary 0.50 point)
2177                            (article 1.0)))))
2178
2179   (with-eval-after-load 'gnus-group-mode
2180     (gnus-group-select-group "INBOX"))
2181   ;; (add-hook 'gnus-group-mode-map (lambda ()
2182   ;;                               (gnus-group-select-group "INBOX")))
2183 #+END_SRC
2184
2185 * Gnu Plot
2186 To fix some issue that =toolbar-make-button-list= is void, see the [[https://github.com/bruceravel/gnuplot-mode/issues/31][issue]], here I set some variable as =nil=
2187 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2188   (use-package gnuplot
2189     :ensure
2190     :init
2191     (setq gnuplot-help-xpm nil)
2192     (setq gnuplot-line-xpm nil)
2193     (setq gnuplot-region-xpm nil)
2194     (setq gnuplot-buffer-xpm nil)
2195     (setq gnuplot-doc-xpm nil))
2196 #+END_SRC
2197
2198 Use =gnuplot= on =Org-mode= file, see [[http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html][ob-doc-gnuplot]]
2199 #+BEGIN_SRC gnuplot :exports code :file ./temp/file.png
2200   reset
2201
2202   set title "Putting it All Together"
2203
2204   set xlabel "X"
2205   set xrange [-8:8]
2206   set xtics -8,2,8
2207
2208
2209   set ylabel "Y"
2210   set yrange [-20:70]
2211   set ytics -20,10,70
2212
2213   f(x) = x**2
2214   g(x) = x**3
2215   h(x) = 10*sqrt(abs(x))
2216
2217   plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3
2218 #+END_SRC
2219
2220 #+RESULTS:
2221 [[file:./temp/file.png]]
2222
2223 * Blog
2224 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2225
2226 #+END_SRC
2227
2228 * key
2229 - passion
2230 - vision
2231 - mission
2232 * Ediff
2233 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2234   (with-eval-after-load 'ediff
2235     (setq ediff-split-window-function 'split-window-horizontally)
2236     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2237     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2238     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2239     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2240 #+END_SRC
2241
2242 * TODO Convert ASCII to key
2243 ** map =function-key-map= [[http://academic.evergreen.edu/projects/biophysics/technotes/program/ascii_ctrl.htm][ascii_ctrl]]
2244 new file =C-x C-f C-f=
2245
2246 ** write color syntax for =Man-mode=
2247
2248 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2249   (font-lock-add-keywords 'perl-mode '(("\\(|\\w+?\\(,\\w+?\\)?|\\)" 1 'py-builtins-face)))
2250 #+END_SRC
2251
2252 * TODO set fly-spell binding
2253
2254 * TODO imenu bindings
2255
2256 * DONE modified indicator
2257 :LOGBOOK:
2258 - State "DONE"       from "TODO"       [2016-07-18 Mon 23:35]
2259 :END:
2260 * DONE highlight selected ido candicate
2261 :LOGBOOK:
2262 - State "DONE"       from "TODO"       [2016-07-19 Tue 01:49]
2263 :END:
2264 * DONE show time in right of mode-line
2265 :LOGBOOK:
2266 - State "DONE"       from "TODO"       [2016-07-19 Tue 01:11]
2267 :END:
2268 * DONE ediff mode
2269 :LOGBOOK:
2270 - State "DONE"       from "TODO"       [2016-07-19 Tue 01:11]
2271 :END:
2272 * TODO jump last change point
2273 * TODO emms mode-line
2274
2275 * NEXT Key Bindings
2276 Here are some global key bindings for basic editting
2277 ** Project operations - =super=
2278 =projectile= settins
2279 ** Windown & Buffer - =C-o=
2280 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2281 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2282 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2283   (winner-mode 1)
2284
2285   (defhydra sd/hydra-window (:color red :columns nil)
2286     "window"
2287     ("h" windmove-left nil :exit t)
2288     ("j" windmove-down nil :exit t)
2289     ("k" windmove-up nil :exit t)
2290     ("l" windmove-right nil :exit t)
2291     ("H" hydra-move-splitter-left nil)
2292     ("J" hydra-move-splitter-down nil)
2293     ("K" hydra-move-splitter-up nil)
2294     ("L" hydra-move-splitter-right nil)
2295     ("v" (lambda ()
2296            (interactive)
2297            (split-window-right)
2298            (windmove-right))
2299      "vert" :exit t)
2300     ("x" (lambda ()
2301            (interactive)
2302            (split-window-below)
2303            (windmove-down))
2304      "horz" :exit t)
2305     ("o" delete-other-windows "one" :exit t)
2306     ("C-o" ido-switch-buffer "buf" :exit t)
2307     ("C-k" sd/delete-current-window "del" :exit t)
2308     ("'" other-window "other" :exit t)
2309     ("a" ace-window "ace")
2310     ("s" ace-swap-window "swap")
2311     ("d" ace-delete-window "ace-one" :exit t)
2312     ("i" ace-maximize-window "ace-one" :exit t)
2313     ("b" ido-switch-buffer "buf" :exit t)
2314     ("C-b" ido-switch-buffer "buf" :exit t)
2315     ("m" bookmark-jump-other-window "open bmk" :exit t)
2316     ("M" bookmark-set "set bmk" :exit t)
2317     ("q" nil "cancel")
2318     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2319     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2320     ("C-h" nil nil :exit t)
2321     ("C-j" nil nil :exit t)
2322     ;; ("C-k" nil :exit t)
2323     ("C-l" nil nil :exit t)
2324     ("C-;" nil nil :exit t)
2325     ("p" nil nil :exit t)
2326     ("n" nil nil :exit t)
2327     ("[" nil nil :exit t)
2328     ("]" nil nil :exit t)
2329     ("f" nil))
2330
2331   (global-unset-key (kbd "C-o"))
2332   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2333 #+END_SRC
2334
2335 ** Edit
2336 - cut, yank, =C-w=, =C-y=
2337 - save, revert
2338 - undo, redo - undo-tree
2339 - select, expand-region
2340 - spell check, flyspell
2341
2342 ** Motion - =C-M-=
2343 Use =Avy= for motion
2344 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2345   (use-package avy
2346     :ensure t
2347     :config
2348     (avy-setup-default)
2349     )
2350
2351   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
2352   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
2353   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
2354   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
2355
2356   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
2357   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
2358
2359   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2360   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
2361   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
2362
2363   ;; will delete above 
2364   (global-set-key (kbd "M-g j") 'avy-goto-line-below)
2365   (global-set-key (kbd "M-g k") 'avy-goto-line-above)
2366   (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
2367   (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
2368   (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2369   (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
2370   (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
2371
2372   ;; M-g TAB              move-to-column
2373   ;; M-g ESC              Prefix Command
2374   ;; M-g c                goto-char
2375   ;; M-g g                goto-line
2376   ;; M-g n                next-error
2377   ;; M-g p                previous-error
2378
2379   ;; M-g M-g              goto-line
2380   ;; M-g M-n              next-error
2381   ;; M-g M-p              previous-error
2382 #+END_SRC
2383
2384 =imenu=, mapping =C-M-i= to =counsel-imenu=
2385 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2386   (global-unset-key (kbd "C-M-i"))
2387   (global-set-key (kbd "C-M-i") #'counsel-imenu)
2388 #+END_SRC
2389
2390 ** Search & Replace / hightlight =M-s=
2391 *** search
2392 *** replace
2393 *** hightlight
2394 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2395
2396   ;; (defhydra sd/search-highlight (:color red :columns nil)
2397   ;;   "search"
2398   ;;   ("M-s" . isearch-forward-regexp "search-forward" :exit t)
2399   ;;   ("s" . isearch-forward-regexp "search-forward" :exit t)
2400   ;;   ("r" . isearch-backward-regexp "search-backward" :exit t)
2401   ;;   )
2402
2403   ;; (setq-default indicate-empty-lines t)
2404 #+END_SRC
2405
2406 * test
2407 #+BEGIN_SRC ditaa :file temp/hello-world.png :cmdline -r
2408 +--------------+
2409 |              |
2410 | Hello World! |
2411 |              |
2412 +--------------+
2413 #+END_SRC
2414
2415 #+RESULTS:
2416 [[file:temp/hello-world.png]]
2417
2418
2419 * =C-u C-h a= search funtions 
2420 =apropos-command=