fdd9843d92dbea5b10b62178ca4209d455937d72
[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
903 * Org-mode Settings
904
905 ** Org-mode Basic setting
906
907 Always indents header, and hide header leading starts so that no need type =#+STATUP: indent= 
908
909 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
910   (use-package org
911     :ensure t
912     :init
913     (setq org-startup-indented t)
914     (setq org-hide-leading-starts t)
915     (setq org-src-fontify-natively t)
916     (setq org-src-tab-acts-natively t)
917     (setq org-confirm-babel-evaluate nil)
918     (setq org-use-speed-commands t)
919     (setq org-completion-use-ido t))
920
921   (org-babel-do-load-languages
922    'org-babel-load-languages
923    '((python . t)
924      (C . t)
925      (perl . t)
926      (calc . t)
927      (latex . t)
928      (java . t)
929      (ruby . t)
930      (lisp . t)
931      (scheme . t)
932      (sh . t)
933      (sqlite . t)
934      (js . t)
935      (gnuplot . t)
936      (ditaa . t)))
937
938   ;; use current window for org source buffer editting
939   (setq org-src-window-setup 'current-window )
940
941   (define-key org-mode-map (kbd "C-'") nil)
942   ;; C-M-i is mapped to imenu globally
943   (define-key org-mode-map (kbd "C-M-i") nil)
944 #+END_SRC
945
946 ** Org-bullets
947
948 use [[https://github.com/sabof/org-bullets][org-bullets]] package to show utf-8 charactes
949
950 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
951   (use-package org-bullets
952     :ensure t
953     :init
954     (add-hook 'org-mode-hook
955               (lambda ()
956                 (org-bullets-mode t))))
957
958   (setq org-bullets-bullet-list '("⦿" "✪" "â—‰" "â—‹" "â–º" "â—†"))
959
960   ;; increase font size when enter org-src-mode
961   (add-hook 'org-src-mode-hook (lambda () (text-scale-increase 2)))
962 #+END_SRC
963
964 ** Worf Mode
965
966 [[https://github.com/abo-abo/worf][worf]] mode is an extension of vi-like binding for org-mode. 
967 In =worf-mode=, it is mapping =[=, =]= as =worf-backward= and =worf-forward= in global, wich
968 cause we cannot input =[= and =]=, so here I unset this mappings. And redifined this two to
969 =M-[= and =M-]=. see this [[https://github.com/abo-abo/worf/issues/19#issuecomment-223756599][issue]]
970
971 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
972
973   (use-package worf
974     :ensure t
975     :commands worf-mode
976     :init (add-hook 'org-mode-hook 'worf-mode)
977     ;; :config
978     ;; (define-key worf-mode-map "[" nil)
979     ;; (define-key worf-mode-map "]" nil)
980     ;; (define-key worf-mode-map (kbd "M-[") 'worf-backward)
981     ;; (define-key worf-mode-map (kbd "M-]") 'worf-forward)
982     )
983
984 #+END_SRC
985
986 ** Get Things Done
987
988 Refer to [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
989 *** basic setup
990
991 standard key binding
992
993 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
994   (global-set-key "\C-cl" 'org-store-link)
995   (global-set-key "\C-ca" 'org-agenda)
996   (global-set-key "\C-cb" 'org-iswitchb)
997 #+END_SRC
998
999 *** Plain List 
1000
1001 Replace the list bullet =-=, =+=,  with =•=, a litter change based [[https://github.com/howardabrams/dot-files/blob/master/emacs-org.org][here]]
1002
1003 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1004   ;; (use-package org-mode
1005   ;;   :init
1006   ;;   (font-lock-add-keywords 'org-mode
1007   ;;    '(("^ *\\([-+]\\) "
1008   ;;           (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))))
1009 #+END_SRC
1010  
1011 *** Todo Keywords
1012
1013 refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][fancy todo states]], 
1014
1015 To track TODO state changes, the =!= is to insert a timetamp, =@= is to insert a note with
1016 timestamp for the state change.
1017
1018 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1019     ;; (setq org-todo-keywords
1020     ;;        '((sequence "☛ TODO(t)" "|" "✔ DONE(d)")
1021     ;;          (sequence "âš‘ WAITING(w)" "|")
1022     ;;          (sequence "|" "✘ CANCELLED(c)")))
1023   ; (setq org-todo-keyword-faces
1024   ;        (quote ("TODO" .  (:foreground "red" :weight bold))
1025   ;               ("NEXT" .  (:foreground "blue" :weight bold))
1026   ;               ("WAITING" . (:foreground "forest green" :weight bold))
1027   ;               ("DONE" .  (:foreground "magenta" :weight bold))
1028   ;               ("CANCELLED" . (:foreground "forest green" :weight bold))))
1029
1030
1031   (setq org-todo-keywords
1032         (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)")
1033                 ;; (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")
1034                 (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" ))))
1035
1036   (setq org-todo-keyword-faces
1037         (quote (("TODO" :foreground "red" :weight bold)
1038                 ("NEXT" :foreground "blue" :weight bold)
1039                 ("DONE" :foreground "forest green" :weight bold)
1040                 ("WAITING" :foreground "orange" :weight bold)
1041                 ("HOLD" :foreground "magenta" :weight bold)
1042                 ("CANCELLED" :foreground "forest green" :weight bold)
1043                 ;; ("MEETING" :foreground "forest green" :weight bold)
1044                 ;; ("PHONE" :foreground "forest green" :weight bold)
1045                 )))
1046 #+END_SRC
1047
1048 Fast todo selections
1049
1050 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1051   (setq org-use-fast-todo-selection t)
1052   (setq org-treat-S-cursor-todo-selection-as-state-change nil)
1053 #+END_SRC
1054
1055 TODO state triggers and tags, [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
1056
1057 - Moving a task to =CANCELLED=, adds a =CANCELLED= tag
1058 - Moving a task to =WAITING=, adds a =WAITING= tag
1059 - Moving a task to =HOLD=, add =HOLD= tags
1060 - Moving a task to =DONE=, remove =WAITING=, =HOLD= tag
1061 - Moving a task to =NEXT=, remove all waiting/hold/cancelled tags
1062
1063 This tags are used to filter tasks in agenda views
1064 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1065   (setq org-todo-state-tags-triggers
1066         (quote (("CANCELLED" ("CANCELLED" . t))
1067                 ("WAITING" ("WAITING" . t))
1068                 ("HOLD" ("WAITING") ("HOLD" . t))
1069                 (done ("WAITING") ("HOLD"))
1070                 ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
1071                 ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
1072                 ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
1073 #+END_SRC
1074
1075 Logging Stuff 
1076 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1077   ;; log time when task done
1078   ;; (setq org-log-done (quote time))
1079   ;; save clocking into to LOGBOOK
1080   (setq org-clock-into-drawer t)
1081   ;; save state change notes and time stamp into LOGBOOK drawer
1082   (setq org-log-into-drawer t)
1083   (setq org-clock-into-drawer "CLOCK")
1084 #+END_SRC
1085
1086 *** Tags
1087 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1088   (setq org-tag-alist (quote ((:startgroup)
1089                               ("@office" . ?e)
1090                               ("@home" . ?h)
1091                               (:endgroup)
1092                               ("WAITING" . ?w)
1093                               ("HOLD" . ?h)
1094                               ("CANCELLED" . ?c))))
1095
1096   ;; Allow setting single tags without the menu
1097   (setq org-fast-tag-selection-single-key (quote expert))
1098 #+END_SRC
1099
1100 *** Capture - Refile - Archive
1101
1102 Capture lets you quickly store notes with little interruption of your work flow.
1103
1104 **** Capture Templates
1105
1106 When a new taks needs to be added, categorize it as 
1107
1108 All captured file which need next actions are stored in =refile.org=, 
1109 - A new task / note (t) =refile.org=
1110 - A work task in office =office.org=
1111 - A jourenl =diary.org=
1112 - A new habit (h) =refile.org=
1113
1114 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1115   (setq org-directory "~/org")
1116   (setq org-default-notes-file "~/org/refile.org")
1117   (setq sd/org-diary-file "~/org/diary.org")
1118
1119   (global-set-key (kbd "C-c c") 'org-capture)
1120
1121   (setq org-capture-templates
1122         (quote (("t" "Todo" entry (file org-default-notes-file)
1123                  "* TODO %?\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1124                 ("n" "Note" entry (file org-default-notes-file)
1125                  "* %? :NOTE:\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1126                 ("j" "Journal" entry (file+datetree sd/org-diary-file)
1127                  "* %?\n:LOGBOOK:\n:END:" :clock-in t :clock-resume t)
1128                 ("h" "Habit" entry (file org-default-notes-file)
1129                  "* 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 "))))
1130 #+END_SRC
1131
1132 **** Refiling Tasks
1133
1134 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1135   (setq org-refile-targets (quote (;; (nil :maxlevel . 9)
1136                                    (org-agenda-files :maxlevel . 9))))
1137
1138   (setq org-refile-use-outline-path t)
1139
1140   (setq org-refile-allow-creating-parent-nodes (quote confirm))
1141 #+END_SRC
1142
1143 *** Agenda Setup
1144 Setting agenda files and the agenda view
1145 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1146   (setq org-agenda-files (quote ("~/org/gtd.org"
1147                                  "~/org/work.org")))
1148
1149   ;; only show today's tasks in agenda view
1150   (setq org-agenda-span 'day)
1151   ;; Use current windows for agenda view
1152   (setq org-agenda-window-setup 'current-window)
1153
1154   ;; show all feature entries for repeating tasks,
1155   ;; this is already setting by default
1156   (setq org-agenda-repeating-timestamp-show-all t)
1157
1158   ;; Show all agenda dates - even if they are empty
1159   (setq org-agenda-show-all-dates t)
1160 #+END_SRC
1161
1162 ** Export PDF
1163
1164 Install MacTex-basic and some tex packages
1165
1166 #+BEGIN_SRC bash 
1167
1168   sudo tlmgr update --self
1169
1170   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
1171
1172 #+END_SRC
1173
1174 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1175   ;; ;; allow for export=>beamer by placing
1176
1177   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
1178   ;; #+LaTeX_CLASS: beamer in org files
1179   (unless (boundp 'org-export-latex-classes)
1180     (setq org-export-latex-classes nil))
1181   (add-to-list 'org-export-latex-classes
1182     ;; beamer class, for presentations
1183     '("beamer"
1184        "\\documentclass[11pt]{beamer}\n
1185         \\mode<{{{beamermode}}}>\n
1186         \\usetheme{{{{beamertheme}}}}\n
1187         \\usecolortheme{{{{beamercolortheme}}}}\n
1188         \\beamertemplateballitem\n
1189         \\setbeameroption{show notes}
1190         \\usepackage[utf8]{inputenc}\n
1191         \\usepackage[T1]{fontenc}\n
1192         \\usepackage{hyperref}\n
1193         \\usepackage{color}
1194         \\usepackage{listings}
1195         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
1196     frame=single,
1197     basicstyle=\\small,
1198     showspaces=false,showstringspaces=false,
1199     showtabs=false,
1200     keywordstyle=\\color{blue}\\bfseries,
1201     commentstyle=\\color{red},
1202     }\n
1203         \\usepackage{verbatim}\n
1204         \\institute{{{{beamerinstitute}}}}\n          
1205          \\subject{{{{beamersubject}}}}\n"
1206
1207        ("\\section{%s}" . "\\section*{%s}")
1208  
1209        ("\\begin{frame}[fragile]\\frametitle{%s}"
1210          "\\end{frame}"
1211          "\\begin{frame}[fragile]\\frametitle{%s}"
1212          "\\end{frame}")))
1213
1214     ;; letter class, for formal letters
1215
1216     (add-to-list 'org-export-latex-classes
1217
1218     '("letter"
1219        "\\documentclass[11pt]{letter}\n
1220         \\usepackage[utf8]{inputenc}\n
1221         \\usepackage[T1]{fontenc}\n
1222         \\usepackage{color}"
1223  
1224        ("\\section{%s}" . "\\section*{%s}")
1225        ("\\subsection{%s}" . "\\subsection*{%s}")
1226        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
1227        ("\\paragraph{%s}" . "\\paragraph*{%s}")
1228        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
1229
1230
1231   (require 'ox-md)
1232   (require 'ox-beamer)
1233
1234   (setq org-latex-pdf-process
1235         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1236           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1237           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
1238
1239   (setq TeX-parse-self t)
1240
1241   (setq TeX-PDF-mode t)
1242   (add-hook 'LaTeX-mode-hook
1243             (lambda ()
1244               (LaTeX-math-mode)
1245               (setq TeX-master t)))
1246
1247 #+END_SRC
1248
1249 ** others
1250
1251 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1252
1253 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1254
1255   (add-to-list 'org-structure-template-alist
1256                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1257   (add-to-list 'org-structure-template-alist
1258                '("S" "#+BEGIN_SRC sh\n?\n#+END_SRC"))
1259   (add-to-list 'org-structure-template-alist
1260                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1261
1262 #+END_SRC
1263
1264 * Magit
1265 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1266 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1267 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1268   (use-package magit
1269     :ensure t
1270     :init
1271     ;; don't ask me to confirm the unsaved change 
1272     (setq magit-save-repository-buffers nil)
1273     :commands magit-status magit-blame
1274     :config
1275     (dolist (map (list magit-status-mode-map
1276                        magit-log-mode-map
1277                        magit-diff-mode-map
1278                        magit-staged-section-map))
1279       (define-key map "j" 'magit-section-forward)
1280       (define-key map "k" 'magit-section-backward)
1281       (define-key map "D" 'magit-discard)
1282       (define-key map "O" 'magit-discard-file)
1283       (define-key map "n" nil)
1284       (define-key map "p" nil)
1285       (define-key map "v" 'recenter-top-bottom)
1286       (define-key map "i" 'magit-section-toggle)))
1287 #+END_SRC
1288
1289 * Eshell
1290 *** Eshell alias
1291 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1292   (defalias 'e 'find-file)
1293   (defalias 'ff 'find-file)
1294   (defalias 'ee 'find-files)
1295 #+END_SRC
1296
1297 *** Eshell erase buffer
1298 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1299   (defun sd/eshell-clear-buffer ()
1300     "Clear eshell buffer"
1301     (interactive)
1302     (let ((inhibit-read-only t))
1303       (erase-buffer)
1304       (eshell-send-input)))
1305
1306    (add-hook 'eshell-mode-hook (lambda ()
1307                                 (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1308 #+END_SRC
1309
1310 *** Toggle Eshell
1311 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1312 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1313   (defun sd/window-has-eshell ()
1314     "Check if current windows list has a eshell buffer, and return the window"
1315     (interactive)
1316     (let ((ret nil))
1317       (walk-windows (lambda (window)
1318                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1319                                  'eshell-mode)
1320                           (setq ret window)))
1321                     nil nil)
1322       ret))
1323
1324   (defun sd/toggle-eshell-here ()
1325     "Toggle a eshell buffer vertically"
1326     (interactive)
1327     (if (sd/window-has-eshell)
1328         (if (equal major-mode 'eshell-mode)
1329             (progn
1330               (if (equal (length (window-list)) 1)
1331                   (mode-line-other-buffer)
1332                 (delete-window)))
1333           (select-window (sd/window-has-eshell)))
1334       (progn
1335         (let ((dir default-directory))
1336           
1337           (split-window-vertically (- (/ (window-total-height) 3)))
1338           (other-window 1)
1339           (unless (and (boundp 'eshell-buffer-name) (get-buffer eshell-buffer-name))
1340             (eshell))
1341           (switch-to-buffer eshell-buffer-name)
1342           (goto-char (point-max))
1343           (eshell-kill-input)
1344           (insert (format "cd %s" dir))
1345           (eshell-send-input)))))
1346
1347   (global-unset-key (kbd "M-`"))
1348   (global-set-key (kbd "M-`") 'sd/toggle-eshell-here)
1349 #+END_SRC
1350
1351 *** TODO smart display
1352 * Misc Settings
1353
1354 ** [[https://github.com/abo-abo/hydra][Hydra]]
1355 *** hydra install
1356 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1357   (use-package hydra
1358     :ensure t)
1359   ;; disable new line in minibuffer when hint hydra
1360   (setq hydra-lv nil)
1361 #+END_SRC
1362
1363 *** Font Zoom
1364 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1365   (defhydra sd/font-zoom (global-map "<f2>")
1366     "zoom"
1367     ("g" text-scale-increase "in")
1368     ("l" text-scale-decrease "out"))
1369 #+END_SRC
1370
1371 *** Windmove Splitter
1372
1373 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1374
1375 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1376
1377   (defun hydra-move-splitter-left (arg)
1378     "Move window splitter left."
1379     (interactive "p")
1380     (if (let ((windmove-wrap-around))
1381           (windmove-find-other-window 'right))
1382         (shrink-window-horizontally arg)
1383       (enlarge-window-horizontally arg)))
1384
1385   (defun hydra-move-splitter-right (arg)
1386     "Move window splitter right."
1387     (interactive "p")
1388     (if (let ((windmove-wrap-around))
1389           (windmove-find-other-window 'right))
1390         (enlarge-window-horizontally arg)
1391       (shrink-window-horizontally arg)))
1392
1393   (defun hydra-move-splitter-up (arg)
1394     "Move window splitter up."
1395     (interactive "p")
1396     (if (let ((windmove-wrap-around))
1397           (windmove-find-other-window 'up))
1398         (enlarge-window arg)
1399       (shrink-window arg)))
1400
1401   (defun hydra-move-splitter-down (arg)
1402     "Move window splitter down."
1403     (interactive "p")
1404     (if (let ((windmove-wrap-around))
1405           (windmove-find-other-window 'up))
1406         (shrink-window arg)
1407       (enlarge-window arg)))
1408
1409 #+END_SRC
1410
1411 *** hydra misc
1412 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1413   (defhydra sd/hydra-misc (:color red :columns nil)
1414     "Miscellaneous Commands"
1415     ("e" eshell "eshell" :exit t)
1416     ("p" (lambda ()
1417            (interactive)
1418            (if (not (eq nil (get-buffer "*Packages*")))
1419                (switch-to-buffer "*Packages*")
1420              (package-list-packages)))
1421      "list-package" :exit t)
1422     ("g" magit-status "git-status" :exit t)
1423     ("'" mode-line-other-buffer "last buffer" :exit t)
1424     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1425     ("m" man "man" :exit t)
1426     ("d" dired-jump "dired" :exit t)
1427     ("b" ibuffer "ibuffer" :exit t)
1428     ("q" nil "quit")
1429     ("f" nil "quit"))
1430
1431   (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1432 #+END_SRC
1433
1434 *** hydra launcher
1435 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1436   (defhydra sd/hydra-launcher (:color blue :columns 2)
1437     "Launch"
1438     ("e" emms "emms" :exit t)
1439     ("q" nil "cancel"))
1440 #+END_SRC
1441
1442 ** Line Number
1443
1444 Enable linum mode on programming modes
1445
1446 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1447
1448   (add-hook 'prog-mode-hook 'linum-mode)
1449
1450 #+END_SRC
1451
1452 Fix the font size of line number
1453
1454 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1455
1456   (defun fix-linum-size ()
1457        (interactive)
1458        (set-face-attribute 'linum nil :height 110))
1459
1460   (add-hook 'linum-mode-hook 'fix-linum-size)
1461
1462 #+END_SRC
1463
1464 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1465
1466 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1467
1468   (use-package linum-relative
1469     :ensure t
1470     :config
1471     (defun linum-new-mode ()
1472       "If line numbers aren't displayed, then display them.
1473   Otherwise, toggle between absolute and relative numbers."
1474       (interactive)
1475       (if linum-mode
1476           (linum-relative-toggle)
1477         (linum-mode 1)))
1478
1479     :bind
1480     ("A-k" . linum-new-mode))
1481
1482   ;; auto enable linum-new-mode in programming modes
1483   (add-hook 'prog-mode-hook 'linum-relative-mode)
1484
1485 #+END_SRC
1486
1487 ** Save File Position
1488
1489 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1490
1491   (require 'saveplace)
1492   (setq-default save-place t)
1493   (setq save-place-forget-unreadable-files t)
1494   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1495
1496 #+END_SRC
1497
1498 ** Multi-term
1499
1500 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1501
1502   (use-package multi-term
1503     :ensure t)
1504
1505 #+END_SRC
1506
1507 ** ace-link
1508
1509 [[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
1510 Type =o= to go to the link
1511
1512 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1513
1514   (use-package ace-link
1515     :ensure t
1516     :init
1517     (ace-link-setup-default))
1518
1519 #+END_SRC
1520
1521 ** Emux
1522
1523 [[https://github.com/re5et/emux][emux]] is 
1524
1525 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1526
1527   (el-get-bundle re5et/emux)
1528
1529 #+END_SRC
1530
1531 ** Smart Parens
1532
1533 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1534
1535   (use-package smartparens
1536     :ensure t
1537     :config
1538     (progn
1539       (require 'smartparens-config)
1540       (add-hook 'prog-mode-hook 'smartparens-mode)))
1541
1542 #+END_SRC
1543
1544 ** Ace-Windows
1545
1546 [[https://github.com/abo-abo/ace-window][ace-window]] 
1547
1548 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1549
1550   (use-package ace-window
1551     :ensure t
1552     :defer t
1553   ;  :init
1554   ;  (global-set-key (kbd "M-o") 'ace-window)
1555     :config
1556     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1557
1558 #+END_SRC
1559
1560 ** Projectile
1561
1562 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1563
1564   (use-package projectile
1565     :ensure t
1566     :init
1567     (setq projectile-enable-caching t)
1568     :config
1569     (projectile-global-mode t))
1570
1571   (use-package persp-projectile
1572     :ensure t
1573     :config
1574     (persp-mode)
1575     :bind
1576     (:map projectile-mode-map
1577           ("s-t" . projectile-persp-switch-project)))
1578
1579   ;; projectile-find-file
1580   ;; projectile-switch-buffer
1581   ;; projectile-find-file-other-window
1582 #+END_SRC
1583
1584 ** Which key
1585
1586 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1587
1588 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1589
1590   (use-package which-key
1591     :ensure t
1592     :config
1593     (which-key-mode))
1594
1595 #+END_SRC
1596
1597 ** Emms
1598
1599 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
1600
1601 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1602   (use-package emms
1603     :ensure t
1604     :init
1605     (setq emms-source-file-default-directory "~/Music/")
1606     :config
1607     (emms-standard)
1608     (emms-default-players)
1609     (define-emms-simple-player mplayer '(file url)
1610       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
1611                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
1612                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
1613                     ".m4a" ".flv" ".ogv" ".pls"))
1614       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
1615     (emms-history-load))
1616
1617 #+END_SRC
1618
1619 ** GnoGo
1620
1621 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
1622
1623 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1624
1625   (use-package gnugo
1626     :ensure t
1627     :defer t
1628     :init
1629     (require 'gnugo-imgen)
1630     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
1631     (add-hook 'gnugo-start-game-hook '(lambda ()
1632                                         (gnugo-image-display-mode)
1633                                         (gnugo-grid-mode)))
1634       :config
1635     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
1636
1637 #+END_SRC
1638
1639 ** Tabbar
1640
1641 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1642
1643   ;; (use-package tabbar-ruler
1644   ;;   :ensure t
1645   ;;   :init
1646   ;;   (setq tabbar-ruler-global-tabbar t)
1647   ;;   (setq tabbar-ruler-global-ruler t)
1648   ;;   (setq tabbar-ruler-popu-menu t)
1649   ;;   (setq tabbar-ruler-popu-toolbar t)
1650   ;;   (setq tabbar-use-images t)
1651   ;;   :config
1652   ;;   (tabbar-ruler-group-by-projectile-project)
1653   ;;   (global-set-key (kbd "s-1") 'tabbar-forward-group)
1654   ;;   (global-set-key (kbd "s-2") 'tabbar-ruler-forward))
1655
1656 #+END_SRC
1657
1658 ** View only for some directory
1659 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]]
1660 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1661   (dir-locals-set-class-variables
1662    'emacs
1663    '((nil . ((buffer-read-only . t)
1664              (show-trailing-whitespace . nil)
1665              (tab-width . 8)
1666              (eval . (whitespace-mode -1))))))
1667
1668   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1669   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1670   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1671   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1672   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1673 #+END_SRC
1674
1675 ** Info plus
1676 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1677   (el-get-bundle info+
1678     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1679     (require 'info+))
1680 #+END_SRC
1681
1682 ** TODO bookmark
1683
1684 ** TODO Calendar
1685 ** advice info
1686 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1687   (defun sd/info-mode ()
1688     (interactive)
1689     (unless (equal major-mode 'Info-mode)
1690       (unless (> (length (window-list)) 1)
1691         (split-window-right))
1692       (other-window 1)
1693       ;; (info)
1694       ))
1695
1696   ;; (global-set-key (kbd "C-h i") 'sd/info-mode)
1697
1698   ;; open Info buffer in other window instead of current window
1699   (defadvice info (before my-info (&optional file buf) activate)
1700     (sd/info-mode))
1701
1702   (defadvice Info-exit (after my-info-exit activate)
1703     (sd/delete-current-window))
1704 #+END_SRC
1705
1706 ** TODO Man mode
1707 Color for Man-mode
1708
1709 ** TODO swiper to occur
1710
1711 ** TODO UTF8
1712 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1713   ;; (set-language-environment "UTF-8")
1714   ;; (set-default-coding-systems 'utf-8)
1715 #+END_SRC
1716
1717 ** Demo It
1718 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1719   ;; (el-get-bundle howardabrams/demo-it)
1720
1721   (use-package org-tree-slide
1722     :ensure t)
1723
1724   ;; (use-package yasnippet
1725   ;;   :ensure t)
1726 #+END_SRC
1727
1728 ** Presentation
1729 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1730   (use-package org-tree-slide
1731     :ensure
1732     :config
1733     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1734     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1735     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1736     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1737 #+END_SRC
1738
1739 * dired
1740 =C-o= is defined as a global key for window operation, here unset it in dired mode
1741 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1742   (use-package dired
1743     :config
1744     (require 'dired-x)
1745     (setq dired-omit-mode t)
1746     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1747     (add-hook 'dired-mode-hook (lambda ()
1748                                  (define-key dired-mode-map (kbd "C-o") nil)
1749                                  (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1750                                  (define-key dired-mode-map (kbd "DEL") (lambda () (interactive) (find-alternate-file "..")))
1751                                  (dired-omit-mode))))
1752 #+END_SRC
1753
1754 Dired+
1755 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1756   (use-package dired+
1757     :ensure t
1758     :init
1759     (setq diredp-hide-details-initially-flag nil)
1760     :config
1761     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1762     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1763     (define-key dired-mode-map (kbd "g") 'dired-goto-file))
1764 #+END_SRC
1765
1766 * Completion
1767 company mode and company-statistics
1768 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1769   (use-package company
1770     :ensure t
1771     :diminish company-mode
1772     :init (setq company-idle-delay 0.1)
1773     :config
1774     (global-company-mode))
1775
1776   (use-package company-statistics
1777     :ensure t
1778     :config
1779     (company-statistics-mode))
1780 #+END_SRC
1781
1782 * Programming Language
1783 ** Emacs Lisp
1784 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1785   (use-package color-identifiers-mode
1786     :ensure t
1787     :init
1788     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1789
1790     :diminish color-identifiers-mode)
1791
1792   (global-prettify-symbols-mode t)
1793 #+END_SRC
1794
1795 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1796 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1797 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1798   (use-package lispy
1799     :ensure t
1800     :init
1801     (eval-after-load "lispy"
1802       `(progn
1803          (define-key lispy-mode-map (kbd "M-o") nil)))
1804     :config
1805     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1806 #+END_SRC
1807
1808 ** Perl
1809 *** CPerl mode
1810 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1811 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1812   (defalias 'perl-mode 'cperl-mode)
1813
1814   ;; (setq cperl-hairy t)
1815   ;; Turns on most of the CPerlMode options
1816   (setq cperl-auto-newline t)
1817   (setq cperl-highlight-variables-indiscriminately t)
1818   ;(setq cperl-indent-level 4)
1819   ;(setq cperl-continued-statement-offset 4)
1820   (setq cperl-close-paren-offset -4)
1821   (setq cperl-indent-parents-as-block t)
1822   (setq cperl-tab-always-indent t)
1823   ;(setq cperl-brace-offset  0)
1824
1825   (add-hook 'cperl-mode-hook
1826             '(lambda ()
1827                (cperl-set-style "C++")))
1828
1829   (defalias 'perldoc 'cperl-perldoc)
1830 #+END_SRC
1831
1832 *** Perl template
1833 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1834 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1835   (eval-after-load 'autoinsert
1836     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1837        '(
1838          "Empty"
1839          "#!/usr/bin/perl -w" \n
1840          \n
1841          "use strict;" >  \n \n
1842          > _
1843          )))
1844 #+END_SRC
1845
1846 *** Perl Keywords
1847 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1848   (font-lock-add-keywords 'cperl-mode
1849                           '(("\\(say\\)" . cperl-nonoverridable-face)
1850                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1851                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1852                             ("\n" . font-lock-constant-face)
1853                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1854
1855     ;; (font-lock-add-keywords 'Man-mode
1856     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1857
1858 #+END_SRC
1859
1860 *** Run Perl
1861 Change the compile-command to set the default command run when call =compile=
1862 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1863 to call =compilation=  interactively.
1864 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1865   (defun my-perl-hook ()
1866     (progn
1867       (setq-local compilation-read-command nil)
1868       (set (make-local-variable 'compile-command)
1869            (concat "/usr/bin/perl "
1870                    (if buffer-file-name
1871                        (shell-quote-argument buffer-file-name))))
1872       (local-set-key (kbd "s-r")
1873                      (lambda ()
1874                        (interactive)
1875                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1876                        (call-interactively 'compile)))))
1877
1878   (add-hook 'cperl-mode-hook 'my-perl-hook)
1879 #+END_SRC
1880
1881 ** C & C++
1882 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1883   (setq c-default-style "stroustrup"
1884         c-basic-offset 4)
1885 #+END_SRC
1886
1887 * Compile
1888 Set the environments vairables in compilation mode
1889 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1890   (use-package compile
1891     :commands compile
1892     :config
1893     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
1894     (setq compilation-auto-jump-to-first-error t)
1895     (setq compilation-auto-jump-to-next t)
1896     (setq compilation-scroll-output 'first-error))
1897
1898   ;; super-r to compile
1899   (with-eval-after-load "compile"
1900     (define-key compilation-mode-map (kbd "C-o") nil)
1901     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
1902     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
1903     (define-key compilation-mode-map (kbd "r") #'recompile))
1904 #+END_SRC
1905
1906 * Auto-Insert
1907 ** Enable auto-insert mode
1908 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1909   (auto-insert-mode t)
1910   (setq auto-insert-query nil)
1911 #+END_SRC
1912
1913 ** C++ Auto Insert
1914 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1915   (eval-after-load 'autoinsert
1916     '(define-auto-insert '("\\.cpp\\'" . "C++ skeleton")
1917        '(
1918          "Short description:"
1919          "/*"
1920          "\n * " (file-name-nondirectory (buffer-file-name))
1921          "\n */" > \n \n
1922          "#include <iostream>" \n
1923          "#include \""
1924          (file-name-sans-extension
1925           (file-name-nondirectory (buffer-file-name)))
1926          ".hpp\"" \n \n
1927          "using namespace std;" \n \n
1928          "int main ()"
1929          "\n{" \n 
1930          > _ \n
1931          "return 1;"
1932          "\n}" > \n
1933          )))
1934
1935   (eval-after-load 'autoinsert
1936     '(define-auto-insert '("\\.c\\'" . "C skeleton")
1937        '(
1938          "Short description:"
1939          "/*\n"
1940          " * " (file-name-nondirectory (buffer-file-name)) "\n"
1941          " */" > \n \n
1942          "#include <stdio.h>" \n
1943          "#include \""
1944          (file-name-sans-extension
1945           (file-name-nondirectory (buffer-file-name)))
1946          ".h\"" \n \n
1947          "int main ()\n"
1948          "{" \n
1949          > _ \n
1950          "return 1;\n"
1951          "}" > \n
1952          )))
1953 #+END_SRC
1954
1955 ** Python template
1956 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1957   (eval-after-load 'autoinsert
1958     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
1959        '(
1960          "Empty"
1961          "#import os,sys" \n
1962          \n \n
1963          )))
1964 #+END_SRC
1965
1966 ** Elisp 
1967 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
1968 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
1969 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1970   (eval-after-load 'autoinsert
1971     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
1972        '(
1973          "Short description: "
1974          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
1975          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
1976          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
1977          "\n
1978   ;; Copyright (C) " (format-time-string "%Y") "  "
1979          (getenv "ORGANIZATION") | (progn user-full-name) "
1980
1981   ;; Author: " (user-full-name)
1982          '(if (search-backward "&" (line-beginning-position) t)
1983               (replace-match (capitalize (user-login-name)) t t))
1984          '(end-of-line 1) " <" (progn user-mail-address) ">
1985   ;; Keywords: "
1986          '(require 'finder)
1987          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
1988          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
1989                            finder-known-keywords)
1990                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
1991                               finder-known-keywords
1992                               "\n"))
1993          ((let ((minibuffer-help-form v2))
1994             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
1995           str ", ") & -2 "
1996
1997   \;; This program is free software; you can redistribute it and/or modify
1998   \;; it under the terms of the GNU General Public License as published by
1999   \;; the Free Software Foundation, either version 3 of the License, or
2000   \;; (at your option) any later version.
2001
2002   \;; This program is distributed in the hope that it will be useful,
2003   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2004   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2005   \;; GNU General Public License for more details.
2006
2007   \;; You should have received a copy of the GNU General Public License
2008   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2009
2010   \;;; Commentary:
2011
2012   \;; " _ "
2013
2014   \;;; Code:
2015
2016
2017   \(provide '"
2018          (file-name-base)
2019          ")
2020   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2021 #+END_SRC
2022
2023 ** Org file template
2024 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2025   (eval-after-load 'autoinsert
2026     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2027        '(
2028          "title: "
2029          "#+TITLE: " str (make-string 30 ?\s) > \n
2030          "#+AUTHOR: Peng Li\n"
2031          "#+EMAIL: seudut@gmail.com\n"
2032          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2033          > \n
2034          > _)))
2035 #+END_SRC
2036
2037 * Markdown mode
2038 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2039   (use-package markdown-mode
2040     :ensure t
2041     :commands (markdown-mode gfm-mode)
2042     :mode (("README\\.md\\'" . gfm-mode)
2043            ("\\.md\\'" . markdown-mode)
2044            ("\\.markdown\\'" . markdown-mode))
2045     :init (setq markdown-command "multimarkdown"))
2046 #+END_SRC
2047
2048 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2049   (use-package markdown-preview-eww
2050     :ensure t)
2051 #+END_SRC
2052
2053 * Gnus
2054 ** Gmail setting 
2055 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2056 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2057   (setq user-mail-address "seudut@gmail.com"
2058         user-full-name "Peng Li")
2059
2060   (setq gnus-select-method
2061         '(nnimap "gmail"
2062                  (nnimap-address "imap.gmail.com")
2063                  (nnimap-server-port "imaps")
2064                  (nnimap-stream ssl)))
2065
2066   (setq smtpmail-smtp-service 587
2067         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2068
2069   ;; Use gmail sending mail
2070   (setq message-send-mail-function 'smtpmail-send-it
2071         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2072         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2073         smtpmail-default-smtp-server "smtp.gmail.com"
2074         smtpmail-smtp-server "smtp.gmail.com"
2075         smtpmail-smtp-service 587
2076         starttls-use-gnutls t)
2077 #+END_SRC
2078
2079 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2080 and =<PASSWORD>= with the password
2081 #+BEGIN_EXAMPLE
2082   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2083   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2084 #+END_EXAMPLE
2085
2086 Then Run =M-x gnus=
2087
2088 ** Group buffer
2089 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2090   (use-package gnus
2091     :init
2092     (setq gnus-permanently-visible-groups "\.*")
2093     :config
2094     (cond (window-system
2095            (setq custom-background-mode 'light)
2096            (defface my-group-face-1
2097              '((t (:foreground "Red" :bold t))) "First group face")
2098            (defface my-group-face-2
2099              '((t (:foreground "DarkSeaGreen4" :bold t)))
2100              "Second group face")
2101            (defface my-group-face-3
2102              '((t (:foreground "Green4" :bold t))) "Third group face")
2103            (defface my-group-face-4
2104              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2105            (defface my-group-face-5
2106              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2107     (setq gnus-group-highlight
2108           '(((> unread 200) . my-group-face-1)
2109             ((and (< level 3) (zerop unread)) . my-group-face-2)
2110             ((< level 3) . my-group-face-3)
2111             ((zerop unread) . my-group-face-4)
2112             (t . my-group-face-5))))
2113
2114
2115   ;; key-
2116   (add-hook 'gnus-group-mode-hook (lambda ()
2117                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2118                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2119                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2120                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2121 #+END_SRC
2122
2123 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2124   (setq gnus-fetch-old-headers 't)
2125
2126
2127
2128   (setq gnus-extract-address-components
2129         'mail-extract-address-components)
2130   ;; summary buffer 
2131   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2132   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2133                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2134                                       (604800 . "%a, %b %-d")
2135                                       (15778476 . "%b %-d")
2136                                       (t . "%Y-%m-%d")))
2137
2138   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2139   (setq gnus-unread-mark ?\.)
2140   (setq gnus-use-correct-string-widths t)
2141
2142   ;; thread
2143   (setq gnus-thread-hide-subtree t)
2144
2145   ;; (with-eval-after-load 'gnus-summary-mode
2146   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2147
2148   (add-hook 'gnus-summary-mode-hook (lambda ()
2149                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2150
2151
2152 #+END_SRC
2153
2154 ** Windows layout
2155 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2156 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2157   (gnus-add-configuration
2158    '(summary
2159      (horizontal 1.0
2160                  (vertical 35
2161                            (group 1.0))
2162                  (vertical 1.0
2163                            (summary 1.0 poine)))))
2164
2165   (gnus-add-configuration
2166    '(article
2167      (horizontal 1.0
2168                  (vertical 35
2169                            (group 1.0))
2170                  (vertical 1.0
2171                            (summary 0.50 point)
2172                            (article 1.0)))))
2173
2174   (with-eval-after-load 'gnus-group-mode
2175     (gnus-group-select-group "INBOX"))
2176   ;; (add-hook 'gnus-group-mode-map (lambda ()
2177   ;;                               (gnus-group-select-group "INBOX")))
2178 #+END_SRC
2179
2180 * Gnu Plot
2181 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=
2182 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2183   (use-package gnuplot
2184     :ensure
2185     :init
2186     (setq gnuplot-help-xpm nil)
2187     (setq gnuplot-line-xpm nil)
2188     (setq gnuplot-region-xpm nil)
2189     (setq gnuplot-buffer-xpm nil)
2190     (setq gnuplot-doc-xpm nil))
2191 #+END_SRC
2192
2193 Use =gnuplot= on =Org-mode= file, see [[http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html][ob-doc-gnuplot]]
2194 #+BEGIN_SRC gnuplot :exports code :file ./temp/file.png
2195   reset
2196
2197   set title "Putting it All Together"
2198
2199   set xlabel "X"
2200   set xrange [-8:8]
2201   set xtics -8,2,8
2202
2203
2204   set ylabel "Y"
2205   set yrange [-20:70]
2206   set ytics -20,10,70
2207
2208   f(x) = x**2
2209   g(x) = x**3
2210   h(x) = 10*sqrt(abs(x))
2211
2212   plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3
2213 #+END_SRC
2214
2215 #+RESULTS:
2216 [[file:./temp/file.png]]
2217
2218 * Blog
2219 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2220
2221 #+END_SRC
2222
2223 * key
2224 - passion
2225 - vision
2226 - mission
2227 * Ediff
2228 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2229   (with-eval-after-load 'ediff
2230     (setq ediff-split-window-function 'split-window-horizontally)
2231     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2232     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2233     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2234     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2235 #+END_SRC
2236
2237 * TODO Convert ASCII to key
2238 ** map =function-key-map= [[http://academic.evergreen.edu/projects/biophysics/technotes/program/ascii_ctrl.htm][ascii_ctrl]]
2239 new file =C-x C-f C-f=
2240
2241 ** write color syntax for =Man-mode=
2242
2243 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2244   (font-lock-add-keywords 'perl-mode '(("\\(|\\w+?\\(,\\w+?\\)?|\\)" 1 'py-builtins-face)))
2245 #+END_SRC
2246
2247 * TODO set fly-spell binding
2248
2249 * TODO imenu bindings
2250
2251 * DONE modified indicator
2252 :LOGBOOK:
2253 - State "DONE"       from "TODO"       [2016-07-18 Mon 23:35]
2254 :END:
2255 * DONE highlight selected ido candicate
2256 :LOGBOOK:
2257 - State "DONE"       from "TODO"       [2016-07-19 Tue 01:49]
2258 :END:
2259 * DONE show time in right of mode-line
2260 :LOGBOOK:
2261 - State "DONE"       from "TODO"       [2016-07-19 Tue 01:11]
2262 :END:
2263 * DONE ediff mode
2264 :LOGBOOK:
2265 - State "DONE"       from "TODO"       [2016-07-19 Tue 01:11]
2266 :END:
2267 * TODO jump last change point
2268 * TODO emms mode-line
2269
2270 * NEXT Key Bindings
2271 Here are some global key bindings for basic editting
2272 ** Project operations - =super=
2273 =projectile= settins
2274 ** Windown & Buffer - =C-o=
2275 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2276 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2277 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2278   (winner-mode 1)
2279
2280   (defhydra sd/hydra-window (:color red :columns nil)
2281     "window"
2282     ("h" windmove-left nil :exit t)
2283     ("j" windmove-down nil :exit t)
2284     ("k" windmove-up nil :exit t)
2285     ("l" windmove-right nil :exit t)
2286     ("H" hydra-move-splitter-left nil)
2287     ("J" hydra-move-splitter-down nil)
2288     ("K" hydra-move-splitter-up nil)
2289     ("L" hydra-move-splitter-right nil)
2290     ("v" (lambda ()
2291            (interactive)
2292            (split-window-right)
2293            (windmove-right))
2294      "vert" :exit t)
2295     ("x" (lambda ()
2296            (interactive)
2297            (split-window-below)
2298            (windmove-down))
2299      "horz" :exit t)
2300     ("o" delete-other-windows "one" :exit t)
2301     ("C-o" ido-switch-buffer "buf" :exit t)
2302     ("C-k" sd/delete-current-window "del" :exit t)
2303     ("'" other-window "other" :exit t)
2304     ("a" ace-window "ace")
2305     ("s" ace-swap-window "swap")
2306     ("d" ace-delete-window "ace-one" :exit t)
2307     ("i" ace-maximize-window "ace-one" :exit t)
2308     ("b" ido-switch-buffer "buf" :exit t)
2309     ("C-b" ido-switch-buffer "buf" :exit t)
2310     ("m" bookmark-jump-other-window "open bmk" :exit t)
2311     ("M" bookmark-set "set bmk" :exit t)
2312     ("q" nil "cancel")
2313     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2314     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2315     ("C-h" nil nil :exit t)
2316     ("C-j" nil nil :exit t)
2317     ;; ("C-k" nil :exit t)
2318     ("C-l" nil nil :exit t)
2319     ("C-;" nil nil :exit t)
2320     ("p" nil nil :exit t)
2321     ("n" nil nil :exit t)
2322     ("[" nil nil :exit t)
2323     ("]" nil nil :exit t)
2324     ("f" nil))
2325
2326   (global-unset-key (kbd "C-o"))
2327   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2328 #+END_SRC
2329
2330 ** Edit
2331 - cut, yank, =C-w=, =C-y=
2332 - save, revert
2333 - undo, redo - undo-tree
2334 - select, expand-region
2335 - spell check, flyspell
2336
2337 ** Motion - =C-M-=
2338 Use =Avy= for motion
2339 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2340   (use-package avy
2341     :ensure t
2342     :config
2343     (avy-setup-default)
2344     )
2345
2346   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
2347   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
2348   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
2349   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
2350
2351   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
2352   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
2353
2354   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2355   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
2356   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
2357
2358   ;; will delete above 
2359   (global-set-key (kbd "M-g j") 'avy-goto-line-below)
2360   (global-set-key (kbd "M-g k") 'avy-goto-line-above)
2361   (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
2362   (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
2363   (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2364   (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
2365   (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
2366
2367   ;; M-g TAB              move-to-column
2368   ;; M-g ESC              Prefix Command
2369   ;; M-g c                goto-char
2370   ;; M-g g                goto-line
2371   ;; M-g n                next-error
2372   ;; M-g p                previous-error
2373
2374   ;; M-g M-g              goto-line
2375   ;; M-g M-n              next-error
2376   ;; M-g M-p              previous-error
2377 #+END_SRC
2378
2379 =imenu=, mapping =C-M-i= to =counsel-imenu=
2380 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2381   (global-unset-key (kbd "C-M-i"))
2382   (global-set-key (kbd "C-M-i") #'counsel-imenu)
2383 #+END_SRC
2384
2385 ** Search & Replace / hightlight =M-s=
2386 *** search
2387 *** replace
2388 *** hightlight
2389 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2390
2391   ;; (defhydra sd/search-highlight (:color red :columns nil)
2392   ;;   "search"
2393   ;;   ("M-s" . isearch-forward-regexp "search-forward" :exit t)
2394   ;;   ("s" . isearch-forward-regexp "search-forward" :exit t)
2395   ;;   ("r" . isearch-backward-regexp "search-backward" :exit t)
2396   ;;   )
2397 #+END_SRC
2398