Emacs - Counsel & Ivy & Swiper
[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 ** Setting loading Path
11 Set system PATH and emacs exec path
12 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
13   (setenv "PATH" (concat (getenv "PATH")
14                          ":" "/usr/local/bin"
15                          ":" "/Library/TeX/texbin"))
16   (setq exec-path (append exec-path '("/usr/local/bin")))
17   (setq exec-path (append exec-path '("/Library/TeX/texbin/")))
18 #+END_SRC
19
20 ** Package Initialization
21 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
22   (require 'package)
23
24   (setq package-archives '(("mepla" . "http://melpa.milkbox.net/packages/")
25                            ("gnu" . "http://elpa.gnu.org/packages/")
26                            ("org" . "http://orgmode.org/elpa/")))
27
28   (package-initialize)
29 #+END_SRC       
30
31 ** My constant
32 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
33   (defconst my-name "Peng Li")
34   (defconst my-email "seudut@gmail.com")
35 #+END_SRC
36
37 ** General Setting
38 *** scroll bar, tool-bar and menu-bar
39 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
40   (if (display-graphic-p)
41       (progn
42         (scroll-bar-mode 0)
43         (tool-bar-mode 0)
44         (menu-bar-mode 1))
45     (menu-bar-mode 0))
46
47   (setq debug-on-error t)
48   (setq inhibit-startup-message t)
49
50   (defalias 'yes-or-no-p 'y-or-n-p)
51   (show-paren-mode 1)
52   ;; don't backupf
53   (setq make-backup-files nil)
54
55   ;;supress the redefined warning at startup
56   (setq ad-redefinition-action 'accept)
57
58   (setq scroll-step 1)
59   (setq scroll-margin 5)
60
61   (when (display-graphic-p)
62     (fringe-mode '(0 . 0)))
63   ;; (setq-default indicate-empty-lines t)
64   ;; (setq-default indicate-abuffer-boundaries 'right)
65 #+END_SRC
66
67 *** Custom file 
68 #+BEGIN_SRC emacs-lisp :tangle yes :results silent 
69   (setq custom-file "~/.emacs.d/custom.el")
70   (if (file-exists-p custom-file)
71       (load custom-file))
72 #+END_SRC
73
74 *** Switch the focus to help window when it appears
75 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
76   (setq help-window-select t)
77 #+END_SRC
78
79 *** Set default window size
80 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
81   (setq initial-frame-alist
82         '((width . 120)
83           (height . 50)))
84
85   ;; (setq-default indicate-empty-lines t)
86 #+END_SRC
87
88 *** Stop auto save
89 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
90   (setq auto-save-default nil)
91
92   ;; restore last session
93   ;; (desktop-save-mode t)
94 #+END_SRC
95
96 *** temp folder
97 Make a temp directory for all cache/history files
98 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
99   (defconst sd-temp-directory
100     (file-name-as-directory "~/.emacs.d/temp"))
101
102   (unless (file-exists-p sd-temp-directory)
103     (mkdir sd-temp-directory))
104 #+END_SRC
105
106 *** Save minibuffer history
107 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
108   (setq savehist-file (concat sd-temp-directory "history"))
109   (setq history-length 1000)
110   (setq savehist-additional-variables '(kill-ring search-ring regexp-search-ring))
111   (savehist-mode 1)
112
113   ;; set temp file path for recentf and auto-save
114   (setq recentf-save-file (concat sd-temp-directory "recentf"))
115   (setq auto-save-list-file-prefix (concat sd-temp-directory "auto-save-list/.saves-"))
116 #+END_SRC
117
118 *** Max file size
119 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
120   (setq large-file-warning-threshold nil)
121 #+END_SRC
122
123 *** Xterm mode
124 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
125   (unless (display-graphic-p)
126     (xterm-mouse-mode))
127 #+END_SRC
128 * Package Management Tools
129 ** Use-package
130 Using [[https://github.com/jwiegley/use-package][use-package]] to manage emacs packages
131 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
132   (unless (package-installed-p 'use-package)
133     (package-refresh-contents)
134     (package-install 'use-package))
135
136   (require 'use-package)
137 #+END_SRC
138
139 ** El-get
140 [[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. 
141 Check out [[http://tapoueh.org/emacs/el-get.html][el-get]].
142 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
143   (use-package el-get
144     :ensure t
145     :init
146     (add-to-list 'load-path "~/.emacs.d/el-get"))
147 #+END_SRC
148
149 ** paradox
150 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
151   (use-package paradox
152     :ensure t)
153 #+END_SRC
154
155 * Color and Fonts Settings
156 ** highlight current line
157 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
158   ;; (global-hl-line-mode)
159   ;; don't want high light current line in eshell/term mode
160   (add-hook 'prog-mode-hook 'hl-line-mode)
161   (add-hook 'text-mode-hook 'hl-line-mode)
162   (add-hook 'dired-mode-hook 'hl-line-mode)
163
164   ;; only highlight selected window
165   (setq hl-line-sticky-flag nil)
166
167   (setq-default fill-column 120)
168   (add-hook 'text-mode-hook 'turn-on-auto-fill)
169 #+END_SRC
170
171 ** Smart Comments
172 [[https://github.com/paldepind/smart-comment][smart-comments]]
173 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
174   (use-package smart-comment
175     :ensure t
176     :bind ("M-;" . smart-conmment))
177 #+END_SRC
178
179 ** Font Setting
180 *** syntax highlighting
181 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
182   (global-font-lock-mode 1)
183 #+END_SRC
184
185 *** [[https://github.com/i-tu/Hasklig][Hasklig]] and Source Code Pro, defined fonts family
186 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
187   (if window-system
188       (defvar sd/fixed-font-family
189         (cond ((x-list-fonts "Hasklig")         "Hasklig")
190               ((x-list-fonts "Source Code Pro") "Source Code Pro:weight=light") ;; weigth=light
191               ((x-list-fonts "Anonymous Pro")   "Anonymous Pro")
192               ((x-list-fonts "M+ 1mn")          "M+ 1mn"))
193         "The fixed width font based on what is installed, `nil' if not defined."))
194 #+END_SRC
195
196 Setting the fonts alignment issue
197 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
198   (if window-system
199       (when sd/fixed-font-family
200         (set-frame-font sd/fixed-font-family)
201         (set-face-attribute 'default nil :font sd/fixed-font-family :height 140)
202         (set-face-font 'default sd/fixed-font-family)))
203 #+END_SRC
204
205 *** Chinese fonts
206 Fix the font alignment issue when both Chinese and English hybird in org-mode table. Refer [[http://coldnew.github.io/blog/2013/11-16_d2f3a/][解決 org-mode 表格內中英文對齊的問題]]
207 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
208   (defvar emacs-english-font "Source Code Pro" "The font name of English.")
209
210   (defvar emacs-cjk-font "STHeiti" "The font name for CJK.")
211
212   (defvar emacs-font-size-pair '(13 . 16) "Default font size pair for (english . chinese)")
213
214   (defvar emacs-font-size-pair-list
215     '(( 5 .  6) (10 . 12)
216       (11 . 14) (12 . 14)
217       (13 . 16) (14 . 16) (15 . 18) (16 . 20) (17 . 20)
218       (18 . 22) (19 . 22) (20 . 24) (21 . 26)
219       (24 . 28) (26 . 32) (28 . 34)
220       (30 . 36) (34 . 40) (36 . 44))
221     "This list is used to store matching (englis . chinese) font-size.")
222
223   (defun font-exist-p (fontname)
224     "Test if this font is exist or not."
225     (if (or (not fontname) (string= fontname ""))
226         nil
227       (if (not (x-list-fonts fontname)) nil t)))
228
229   (defun set-font (english chinese size-pair)
230     "Setup emacs English and Chinese font on x window-system."
231     (if (font-exist-p english)
232         (set-frame-font (format "%s:pixelsize=%d" english (car size-pair)) t))
233     (if (font-exist-p chinese)
234         (dolist (charset '(han cjk-misc) ;; '(kana han symbol cjk-misc bopomofo)
235                  )
236           (set-fontset-font (frame-parameter nil 'font) charset
237                             (font-spec :family chinese :size (cdr size-pair))))))
238
239   (defun emacs-step-font-size (step)
240     "Increase/Decrease emacs's font size."
241     (let ((scale-steps emacs-font-size-pair-list))
242       (if (< step 0) (setq scale-steps (reverse scale-steps)))
243       (setq emacs-font-size-pair
244             (or (cadr (member emacs-font-size-pair scale-steps))
245                 emacs-font-size-pair))
246       (when emacs-font-size-pair
247         (message "emacs font size set to %.1f" (car emacs-font-size-pair))
248         (set-font emacs-english-font emacs-cjk-font emacs-font-size-pair))))
249
250   (defun increase-emacs-font-size ()
251     "Decrease emacs's font-size acording emacs-font-size-pair-list."
252     (interactive) (emacs-step-font-size 1))
253
254   (defun decrease-emacs-font-size ()
255     "Increase emacs's font-size acording emacs-font-size-pair-list."
256     (interactive) (emacs-step-font-size -1))
257 #+END_SRC
258
259
260 ** Color Theme
261
262 Loading theme should be after all required loaded, refere [[https://github.com/jwiegley/use-package][:defer]] in =use-package=
263
264 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
265   (setq vc-follow-symlinks t)
266   (use-package molokai-theme
267     :ensure t)
268
269   (use-package color-theme
270     :ensure t
271     :init (require 'color-theme)
272     :config (use-package color-theme-sanityinc-tomorrow
273               :ensure t
274               :no-require t
275               :config
276               ;; (load-theme 'sanityinc-tomorrow-bright t)
277               (load-theme 'molokai t)
278               ))
279
280   ;(eval-after-load 'color-theme
281   ;  (load-theme 'sanityinc-tomorrow-bright t))
282
283 #+END_SRC
284
285 Change the Org-mode colors 
286
287 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
288
289   (defun org-src-color-blocks-light ()
290     "Colors the block headers and footers to make them stand out more for lighter themes"
291     (interactive)
292     (custom-set-faces
293      '(org-block-begin-line
294       ((t (:underline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
295      '(org-block-background
296        ((t (:background "#FFFFEA"))))
297      '(org-block
298        ((t (:background "#FFFFEA"))))
299      '(org-block-end-line
300        ((t (:overline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
301
302      '(mode-line-buffer-id ((t (:foreground "#005000" :bold t))))
303      '(which-func ((t (:foreground "#008000"))))))
304
305   (defun org-src-color-blocks-dark ()
306     "Colors the block headers and footers to make them stand out more for dark themes"
307     (interactive)
308     (custom-set-faces
309      '(org-block-begin-line
310        ((t (:foreground "#008ED1" :background "#002E41"))))
311      '(org-block-background
312        ((t (:background "#000000"))))
313      '(org-block
314        ((t (:background "#000000"))))
315      '(org-block-end-line
316        ((t (:foreground "#008ED1" :background "#002E41"))))
317
318      '(mode-line-buffer-id ((t (:foreground "black" :bold t))))
319      '(which-func ((t (:foreground "green"))))))
320
321   (org-src-color-blocks-dark)
322
323 #+END_SRC
324
325 improve color for org-mode
326 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
327   (deftheme ha/org-theme "Sub-theme to beautify org mode")
328
329   (if window-system
330       (defvar sd/variable-font-tuple
331         (cond ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))
332               ((x-list-fonts "Lucida Grande")   '(:font "Lucida Grande"))
333               ((x-list-fonts "Verdana")         '(:font "Verdana"))
334               ((x-family-fonts "Sans Serif")    '(:family "Sans Serif"))
335               (nil (warn "Cannot find a Sans Serif Font.  Install Source Sans Pro.")))
336         "My variable width font available to org-mode files and whatnot."))
337
338   (defun sd/org-color ()
339     (let* ((sd/fixed-font-tuple (list :font sd/fixed-font-family))
340            (base-font-color     (face-foreground 'default nil 'default))
341            (background-color    (face-background 'default nil 'default))
342            (primary-color       (face-foreground 'mode-line nil))
343            (secondary-color     (face-background 'secondary-selection nil 'region))
344            (base-height         (face-attribute 'default :height))
345            (headline           `(:inherit default :weight bold :foreground ,base-font-color)))
346       (custom-theme-set-faces 'ha/org-theme
347                               `(org-agenda-structure ((t (:inherit default :height 2.0 :underline nil))))
348                               `(org-verbatim ((t (:inherit 'fixed-pitched :foreground "#aef"))))
349                               `(org-table ((t (:inherit 'fixed-pitched))))
350                               `(org-block ((t (:inherit 'fixed-pitched))))
351                               `(org-block-background ((t (:inherit 'fixed-pitched))))
352                               `(org-block-begin-line ((t (:inherit 'fixed-pitched))))
353                               `(org-block-end-line ((t (:inherit 'fixed-pitched))))
354                               `(org-level-8 ((t (,@headline ,@sd/variable-font-tuple))))
355                               `(org-level-7 ((t (,@headline ,@sd/variable-font-tuple))))
356                               `(org-level-6 ((t (,@headline ,@sd/variable-font-tuple))))
357                               `(org-level-5 ((t (,@headline ,@sd/variable-font-tuple))))
358                               `(org-level-4 ((t (,@headline ,@sd/variable-font-tuple
359                                                             :height ,(round (* 1.1 base-height))))))
360                               `(org-level-3 ((t (,@headline ,@sd/variable-font-tuple
361                                                             :height ,(round (* 1.25 base-height))))))
362                               `(org-level-2 ((t (,@headline ,@sd/variable-font-tuple
363                                                             :height ,(round (* 1.5 base-height))))))
364                               `(org-level-1 ((t (,@headline ,@sd/variable-font-tuple
365                                                             :height ,(round (* 1.75 base-height))))))
366                               `(org-document-title ((t (,@headline ,@sd/variable-font-tuple :height 1.5 :underline nil)))))))
367
368
369 #+END_SRC
370
371 search text theme
372 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
373   (set-face-attribute 'lazy-highlight nil :background "yellow" :foreground "black" :weight 'bold)
374 #+END_SRC
375
376 ** Rainbow-delimiter
377
378 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
379
380   (use-package rainbow-delimiters
381     :ensure t
382     :init
383     (add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
384
385 #+END_SRC
386
387 ** page-break-lines
388 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
389   (use-package page-break-lines
390     :ensure t
391     :config
392     (global-page-break-lines-mode)
393     ;; (turn-on-page-break-lines-mode)
394     )
395 #+END_SRC
396
397 ** rainbow-mode
398
399 Enable rainbow mode in emacs lisp mode
400
401 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
402   (use-package rainbow-mode
403     :ensure t
404   ;  :init
405   ;  (add-hook emacs-lisp-mode-hook 'rainbow-mode)
406     )
407
408 #+END_SRC
409
410 ** cusor color
411 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
412   (if (display-graphic-p)
413       (set-cursor-color 'red))
414 #+END_SRC
415
416 * Mode-line
417 ** clean mode line
418 clean mode line, Refer to [[https://www.masteringemacs.org/article/hiding-replacing-modeline-strings][Marstering Emacs]], some greek character see [[http://xahlee.info/math/math_unicode_greek.html][math_unicode_greek]]
419 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
420   (defvar mode-line-cleaner-alist
421     `((auto-complete-mode . " α")
422       (paredit-mode . " π")
423       (eldoc-mode . "")
424       (abbrev-mode . "")
425       (projectile-mode . "")
426       (ivy-mode . "")
427       (undo-tree-mode . "")
428       ;; default is WK
429       (which-key-mode . "")
430       ;; default is SP
431       (smartparens-mode . "")
432       ;; default is LR
433       (linum-relative-mode . "")
434       ;; default is ARev
435       (auto-revert-mode . "")
436       ;; default is Ind
437       (org-indent-mode . "")
438       ;; default is  Fly
439       (flyspell-mode . "")
440       (irony-mode . "")
441       (page-break-lines-mode . "")
442       (yas-minor-mode . "y")
443       ;; default jj
444       (evil-escape-mode . "")
445       ;; Major modes
446       (lisp-interaction-mode . "λ")
447       (hi-lock-mode . "")
448       (python-mode . "Py")
449       (emacs-lisp-mode . "EL")
450       (eshell-mode . "𝞔")
451       (dired-mode . "𝞓")
452       (ibuffer-mode . "𝞑")
453       (org-mode . "𝞞")
454       (nxhtml-mode . "nx"))
455     "Alist for `clean-mode-line'.
456
457   When you add a new element to the alist, keep in mind that you
458   must pass the correct minor/major mode symbol and a string you
459   want to use in the modeline *in lieu of* the original.")
460
461
462   (defun clean-mode-line ()
463     (interactive)
464     (loop for cleaner in mode-line-cleaner-alist
465           do (let* ((mode (car cleaner))
466                    (mode-str (cdr cleaner))
467                    (old-mode-str (cdr (assq mode minor-mode-alist))))
468                (when old-mode-str
469                    (setcar old-mode-str mode-str))
470                  ;; major mode
471                (when (eq mode major-mode)
472                  (setq mode-name mode-str)))))
473
474
475   (add-hook 'after-change-major-mode-hook 'clean-mode-line)
476 #+END_SRC
477
478 ** Powerline mode
479 Install powerline mode [[https://github.com/milkypostman/powerline][powerline]]
480 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
481   (use-package powerline
482     :ensure t
483     :config
484     ;; (powerline-center-theme)
485     )
486
487   ;; (use-package smart-mode-line
488   ;;   :ensure t)
489   ;; (use-package smart-mode-line-powerline-theme
490   ;;   :ensure t)
491 #+END_SRC
492
493 Revised powerline-center-theme
494 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
495   (defun sd/powerline-simpler-vc (s)
496     (if s
497         (replace-regexp-in-string "Git[:-]" "" s)
498       s))
499
500   (defface sd/powerline-active1 '((t (:background "yellow" :foreground "black" :inherit mode-line)))
501     "My Powerline face 1 based on powerline-active1."
502     :group 'powerline)
503
504   (defface sd/buffer-modified-active1 '((t (:background "red" :foreground "black" :inherit mode-line)))
505     "My Powerline face 1 based on powerline-active1."
506     :group 'powerline)
507
508   (defface sd/buffer-view-active1 '((t (:background "green" :foreground "black" :inherit mode-line)))
509     "My Powerline face 1 based on powerline-active1."
510     :group 'powerline)
511
512   (defface sd/mode-line-buffer-id
513     '((t (:background "yellow" :foreground "black" :inherit mode-line-buffer-id)))
514     "My powerline mode-line face, based on mode-line-buffer-id"
515     :group 'powerline)
516
517   ;; Don't show buffer modified for scratch and eshell mode
518   (defun sd/buffer-is-eshel-or-scratch ()
519     "Dot not show modified indicator for buffers"
520     (interactive)
521     (unless (or (string-match "*scratch*" (buffer-name))
522                 (equal major-mode 'eshell-mode))
523       t))
524
525   (defun sd/powerline-center-theme_revised ()
526     "Setup a mode-line with major and minor modes centered."
527     (interactive)
528     (setq-default mode-line-format
529                   '("%e"
530                     (:eval
531                      (let* ((active (powerline-selected-window-active))
532                             ;; (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'mode-line-buffer-id-inactive))
533                             (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'powerline-inactive1))
534                             (mode-line (if active 'mode-line 'mode-line-inactive))
535                             (my-face1 (if active 'sd/powerline-active1 'powerline-inactive1))
536                             (my-face-buffer-modified (if (and (sd/buffer-is-eshel-or-scratch) (buffer-modified-p) (not buffer-read-only)) 
537                                                          'sd/buffer-modified-active1
538                                                        (if buffer-read-only 'sd/buffer-view-active1
539                                                          my-face1)))
540                             (face1 (if active 'powerline-active1 'powerline-inactive1))
541                             (face2 (if active 'powerline-active2 'powerline-inactive2))
542                             (separator-left (intern (format "powerline-%s-%s"
543                                                             (powerline-current-separator)
544                                                             (car powerline-default-separator-dir))))
545                             (separator-right (intern (format "powerline-%s-%s"
546                                                              (powerline-current-separator)
547                                                              (cdr powerline-default-separator-dir))))
548                             (lhs (list (powerline-raw "%* " my-face-buffer-modified 'l)
549                                        ;; (powerline-buffer-size mode-line 'l)
550                                        (powerline-buffer-id mode-line-buffer-id 'l)
551                                        (powerline-raw " " my-face1)
552                                        (funcall separator-left my-face1 face1)
553                                        (powerline-narrow face1 'l)
554                                        ;; (powerline-vc face1)
555                                        (sd/powerline-simpler-vc (powerline-vc face1))))
556                             (rhs (list (powerline-raw global-mode-string face1 'r)
557                                        (powerline-raw "%4l" face1 'r)
558                                        (powerline-raw ":" face1)     
559                                        (powerline-raw "%3c" face1 'r)
560                                        (funcall separator-right face1 my-face1)
561                                        ;; (powerline-raw " " my-face1)
562                                        (powerline-raw (format-time-string " %I:%M %p  ") my-face1 'r)
563                                        ;; (powerline-raw "%6p" my-face1 'r)
564                                        ;; (powerline-hud my-face1 face1 )
565                                        ))
566                             (center (list (powerline-raw " " face1)
567                                           (funcall separator-left face1 face2)
568                                           (powerline-raw (when  (and (boundp 'evil-mode)  evil-mode) evil-mode-line-tag) face2)
569                                           (when (and (boundp 'erc-track-minor-mode) erc-track-minor-mode)
570                                             (powerline-raw erc-modified-channels-object face2 'l))
571                                           (powerline-major-mode face2 'l)
572                                           (powerline-process face2)
573                                           (powerline-raw " :" face2)
574                                           (powerline-minor-modes face2 'l)
575                                           (powerline-raw " " face2)
576                                           (funcall separator-right face2 face1))))
577                        (concat (powerline-render lhs)
578                                (powerline-fill-center face1 (/ (powerline-width center) 2.0))
579                                (powerline-render center)
580                                (powerline-fill face1 (powerline-width rhs))
581                                (powerline-render rhs)))))))
582
583   (sd/powerline-center-theme_revised)
584 #+END_SRC
585
586 Fix the issue in mode line when showing triangle 
587 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
588   (setq ns-use-srgb-colorspace nil)
589 #+END_SRC
590
591 set height in mode line
592 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
593   (defconst sd/mode-line-font-heigh 100
594     "Defaulet the fontsize on mode line.")
595
596   (with-eval-after-load "powerline"
597     (when (display-graphic-p)
598       (set-face-attribute 'mode-line-inactive nil :height sd/mode-line-font-heigh)
599       (set-face-attribute 'mode-line nil :height sd/mode-line-font-heigh)
600       (let* ((base-font-size (face-attribute 'default :height)))
601         ;; 100/140;0.8
602         (set-variable 'powerline-height (/ base-font-size 10))
603         (set-variable 'powerline-text-scale-factor (/ (float sd/mode-line-font-heigh) base-font-size)))))
604 #+END_SRC
605
606 * IDO & SMEX
607 ** IDO
608 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
609   (use-package ido
610     :ensure t
611     :init (setq ido-enable-flex-matching t
612                 ido-ignore-extensions t
613                 ido-use-virtual-buffers t
614                 ido-use-faces nil
615                 ido-everywhere t)
616     (setq ido-save-directory-list-file (concat sd-temp-directory "ido.last"))
617     :config
618     (ido-mode 1)
619     (ido-everywhere 1)
620     (add-to-list 'completion-ignored-extensions ".pyc")
621
622
623     (define-key ido-buffer-completion-map (kbd "C-w") #'ido-delete-backward-word-updir)
624     (define-key ido-file-completion-map (kbd "C-w") #'ido-delete-backward-word-updir)
625     (define-key ido-file-dir-completion-map (kbd "C-w") #'ido-delete-backward-updir)
626     ;; (define-key ido-file-dir-completion-map (kbd "C-i") #'ido-copy-current-word)
627     )
628
629   (icomplete-mode t)
630 #+END_SRC
631
632 ** FLX
633 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
634   (use-package flx-ido
635     :ensure t
636     :config (flx-ido-mode nil))
637 #+END_SRC
638
639 ** IDO-vertically
640 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
641   (use-package ido-vertical-mode
642     :ensure t
643     :init
644     (setq ido-vertical-define-keys 'C-n-C-p-up-and-down)
645     :config
646     (ido-vertical-mode 1))
647 #+END_SRC
648
649 ** SMEX
650 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
651   (use-package smex
652     :ensure t
653     :init
654     (setq smex-save-file (concat sd-temp-directory "smex-items"))
655     (smex-initialize)
656     :bind
657     ("M-x" . smex)
658     ("M-X" . smex-major-mode-commands))
659 #+END_SRC
660
661 ** Ido-ubiquitous
662 Use [[https://github.com/DarwinAwardWinner/ido-ubiquitous][ido-ubiquitous]] for ido everywhere. It makes =describe-function= can also use ido
663 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
664   (use-package ido-ubiquitous
665     :ensure t
666     :init
667     (setq magit-completing-read-function 'magit-ido-completing-read)
668     (setq gnus-completing-read-function 'gnus-ido-completing-read)
669     :config
670     (ido-ubiquitous-mode 1))
671 #+END_SRC
672
673 ** Ido-exit-target
674 [[https://github.com/waymondo/ido-exit-target][ido-exit-target]] let you open file/buffer on =other-windows= when call =ido-switch-buffer=
675 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
676   (use-package ido-exit-target
677     :ensure t
678     :init
679     (mapcar #'(lambda (map)
680               (define-key map (kbd "C-j") #'ido-exit-target-other-window)
681               (define-key map (kbd "C-k") #'ido-exit-target-split-window-below))
682             (list ido-buffer-completion-map
683                   ;; ido-common-completion-map
684                   ido-file-completion-map
685                   ido-file-dir-completion-map)))
686 #+END_SRC
687
688 ** helm
689 let helm windows split inside current window
690 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
691   (with-eval-after-load 'helm
692     (setq helm-split-window-in-side-p t))
693 #+END_SRC
694
695 * Swiper & Ivy & Counsel
696 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
697   (use-package counsel
698     :ensure t
699     :defer t
700     :init
701     (use-package ivy :ensure t)
702     (ivy-mode 1)
703     (setq ivy-use-virtual-buffers nil
704           ivy-wrap t)
705     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
706     (global-set-key (kbd "M-x") 'counsel-M-x)
707     (global-set-key (kbd "C-h f") 'counsel-describe-function)
708     (global-set-key (kbd "C-h v") 'counsel-describe-variable)
709     (global-set-key (kbd "C-x C-f") 'counsel-find-file)
710     (define-key read-expression-map (kbd "C-r") 'counsel-expression-history)
711     (global-set-key (kbd "C-c C-r") 'ivy-resume))
712
713   (use-package counsel-projectile
714     :ensure t
715     :defer t)
716 #+END_SRC
717
718 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
719   (defun sd/swith-buffer-other-window ()
720     (interactive)
721     (ivy-set-action (cond ((eq (ivy-state-caller ivy-last) 'ivy-switch-buffer)
722                            'ivy--switch-buffer-other-window-action)
723                           ((eq (ivy-state-caller ivy-last) 'counsel-recentf)
724                            'find-file-other-window)
725                           ((eq (ivy-state-caller ivy-last) 'counsel-projectile-find-file)
726                            'counsel-projectile-find-file-action-other-window)
727                           (t
728                            nil)))
729     (ivy-done)
730     (ivy-shrink-after-dispatching))
731
732   (with-eval-after-load "ivy"
733     (define-key ivy-minibuffer-map (kbd "C-k") #'sd/swith-buffer-other-window))
734 #+END_SRC
735
736 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
737 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
738   (use-package swiper
739     :ensure t
740     ;; :init
741     ;(require 'ivy)
742     ;; (setq ivy-use-virtual-buffers nil)
743     ;; (setq ivy-wrap t)
744     ;(set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
745     :config
746     ;; (ivy-mode)
747     (global-set-key (kbd "s-/") 'swiper)
748     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
749     (define-key swiper-map (kbd "C-.") (lambda ()
750                                          (interactive)
751                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
752     (define-key swiper-map (kbd "M-.") (lambda ()
753                                          (interactive)
754                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
755
756 #+END_SRC
757 * Org-mode Settings
758 ** Org-mode Basic setting
759 Always indents header, and hide header leading starts so that no need type =#+STATUP: indent= 
760 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
761   (use-package org
762     :ensure t
763     :init
764     (setq org-startup-indented t)
765     (setq org-hide-leading-starts t)
766     (setq org-src-fontify-natively t)
767     (setq org-src-tab-acts-natively t)
768     (setq org-confirm-babel-evaluate nil)
769     (setq org-use-speed-commands t)
770     (setq org-completion-use-ido t)
771     (setq org-startup-with-inline-images t)
772     ;; latex preview
773     ;; (setq org-startup-with-latex-preview t)
774     ;; (setq org-format-latex-options (plist-put org-format-latex-options :scale 1.2))
775     (require 'org-habit)
776     (add-to-list 'org-modules 'org-habit)
777     (setq org-habit-graph-column 50)
778     (setq org-hide-emphasis-markers t)
779     (setq org-html-validation-link nil)
780     ;; open link when return clicked
781     (setq org-return-follows-link t)
782     ;; open the ppt file by external open instead of emacs
783     (add-to-list 'org-file-apps '("\\.pptx" . "open %s"))
784     (add-to-list 'org-file-apps '("\\.doc" . "open %s"))
785     (setq org-image-actual-width nil))
786 #+END_SRC
787
788
789 ** Org babel
790 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
791   (el-get-bundle hasu/emacs-ob-racket
792     :features ob-racket)
793
794   ;; Lua support
795   ;(use-package ob-lua
796   ;  :ensure t)
797
798   ;; use current window for org source buffer editting
799
800   (setq org-src-window-setup 'current-window )
801   (define-key org-mode-map (kbd "C-'") nil)
802   ;; C-M-i is mapped to imenu globally
803   (define-key org-mode-map (kbd "C-M-i") nil)
804   ;; set the ditta.jar path
805
806   (setq org-ditaa-jar-path "/usr/local/Cellar/ditaa/0.9/libexec/ditaa0_9.jar")
807   (unless 
808       (file-exists-p org-ditaa-jar-path)
809     (message "seudut: ditaa.jar not found at %s " org-ditaa-jar-path))
810
811   (org-babel-do-load-languages 'org-babel-load-languages
812                                '((python . t)
813                                  (C . t)
814                                  (perl . t)
815                                  (calc . t)
816                                  (latex . t)
817                                  (java . t)
818                                  (ruby . t)
819   ;                               (lua . t)
820                                  (lisp . t)
821                                  (scheme . t)
822                                  (racket . t)
823                                  (sh . t)
824                                  (sqlite . t)
825                                  (js . t)
826                                  (gnuplot . t)
827                                  (ditaa . t)
828                                  (plantuml . t)))
829
830
831   ;; toggle image preview 
832   (add-hook 'org-babel-after-execute-hook 'sd/display-inline-images 'append)
833
834   (defun sd/display-inline-images ()
835     (condition-case nil
836         (org-display-inline-images)
837       (error nil)))
838
839   ;; ditaa artist mode
840   (with-eval-after-load "artist"
841     (define-key artist-mode-map [down-mouse-3] 'artist-mouse-choose-operation))
842 #+END_SRC
843 *** plantUML
844 [[http://eschulte.github.io/babel-dev/DONE-integrate-plantuml-support.html][DONE-integrate-plantuml-support]]
845 #+BEGIN_SRC sh
846   ## support plantuml
847   brew install plantuml
848 #+END_SRC
849
850 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
851   (use-package plantuml-mode
852     :ensure t)
853
854   (setq org-plantuml-jar-path
855         (expand-file-name "/usr/local/Cellar/plantuml/8041/plantuml.8041.jar"))
856
857   (set-variable 'plantuml-jar-path
858                 (expand-file-name "/usr/local/Cellar/plantuml/8041/plantuml.8041.jar"))
859 #+END_SRC
860
861 ** Org-bullets
862 use [[https://github.com/sabof/org-bullets][org-bullets]] package to show utf-8 charactes
863 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
864   (use-package org-bullets
865     :ensure t
866     :init
867     (add-hook 'org-mode-hook (apply-partially #'org-bullets-mode t)))
868
869   (setq org-bullets-bullet-list '("⦿" "✪" "◉" "○" "►" "◆"))
870
871   ;; increase font size when enter org-src-mode
872   ;; (add-hook 'org-src-mode-hook (lambda () (text-scale-increase 2)))
873
874   ;; define a face for org-bullets
875   (defface org-bullet-face
876       '((t (:foreground "green yellow")))
877   "Face used for the org-bullets.")
878   (setq org-bullets-face-name (quote  org-bullet-face))
879   (set-face-attribute 'org-bullet-face t :foreground "burlywood" :weight 'normal :height 1.6)
880 #+END_SRC
881
882 ** Worf Mode
883 [[https://github.com/abo-abo/worf][worf]] mode is an extension of vi-like binding for org-mode. 
884 In =worf-mode=, it is mapping =[=, =]= as =worf-backward= and =worf-forward= in global, wich
885 cause we cannot input =[= and =]=, so here I unset this mappings. And redifined this two to
886 =M-[= and =M-]=. see this [[https://github.com/abo-abo/worf/issues/19#issuecomment-223756599][issue]]
887 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
888   (use-package worf
889     :ensure t
890     :commands worf-mode
891     :init
892     (require 'ivy)
893     (add-hook 'org-mode-hook 'worf-mode))
894 #+END_SRC
895
896 ** Get Things Done
897 Refer to [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
898 *** basic setup
899 standard key binding
900 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
901   (global-set-key "\C-cl" 'org-store-link)
902   (global-set-key "\C-ca" 'org-agenda)
903   (global-set-key "\C-cb" 'org-iswitchb)
904 #+END_SRC
905
906 *** Plain List 
907 Replace the list bullet =-=, =+=,  with =•=, a litter change based [[https://github.com/howardabrams/dot-files/blob/master/emacs-org.org][here]]
908 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
909   ;; (use-package org-mode
910   ;;   :init
911   ;;   (font-lock-add-keywords 'org-mode
912   ;;    '(("^ *\\([-+]\\) "
913   ;;           (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))))
914 #+END_SRC
915  
916 *** Todo Keywords
917 refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][fancy todo states]], 
918 To track TODO state changes, the =!= is to insert a timetamp, =@= is to insert a note with
919 timestamp for the state change.
920 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
921     ;; (setq org-todo-keywords
922     ;;        '((sequence "☛ TODO(t)" "|" "✔ DONE(d)")
923     ;;          (sequence "⚑ WAITING(w)" "|")
924     ;;          (sequence "|" "✘ CANCELLED(c)")))
925   ; (setq org-todo-keyword-faces
926   ;        (quote ("TODO" .  (:foreground "red" :weight bold))
927   ;               ("NEXT" .  (:foreground "blue" :weight bold))
928   ;               ("WAITING" . (:foreground "forest green" :weight bold))
929   ;               ("DONE" .  (:foreground "magenta" :weight bold))
930   ;               ("CANCELLED" . (:foreground "forest green" :weight bold))))
931
932
933   (setq org-todo-keywords
934         (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)")
935                 ;; (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")
936                 (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" ))))
937
938   (setq org-todo-keyword-faces
939         (quote (("TODO" :foreground "red" :weight bold)
940                 ("NEXT" :foreground "blue" :weight bold)
941                 ("DONE" :foreground "forest green" :weight bold)
942                 ("WAITING" :foreground "orange" :weight bold)
943                 ("HOLD" :foreground "magenta" :weight bold)
944                 ("CANCELLED" :foreground "forest green" :weight bold)
945                 ;; ("MEETING" :foreground "forest green" :weight bold)
946                 ;; ("PHONE" :foreground "forest green" :weight bold)
947                 )))
948 #+END_SRC
949
950 Fast todo selections
951
952 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
953   (setq org-use-fast-todo-selection t)
954   (setq org-treat-S-cursor-todo-selection-as-state-change nil)
955 #+END_SRC
956
957 TODO state triggers and tags, [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
958
959 - Moving a task to =CANCELLED=, adds a =CANCELLED= tag
960 - Moving a task to =WAITING=, adds a =WAITING= tag
961 - Moving a task to =HOLD=, add =HOLD= tags
962 - Moving a task to =DONE=, remove =WAITING=, =HOLD= tag
963 - Moving a task to =NEXT=, remove all waiting/hold/cancelled tags
964
965 This tags are used to filter tasks in agenda views
966 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
967   (setq org-todo-state-tags-triggers
968         (quote (("CANCELLED" ("CANCELLED" . t))
969                 ("WAITING" ("WAITING" . t))
970                 ("HOLD" ("WAITING") ("HOLD" . t))
971                 (done ("WAITING") ("HOLD"))
972                 ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
973                 ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
974                 ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
975 #+END_SRC
976
977 Logging Stuff 
978 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
979   ;; log time when task done
980   ;; (setq org-log-done (quote time))
981   ;; save clocking into to LOGBOOK
982   (setq org-clock-into-drawer t)
983   ;; save state change notes and time stamp into LOGBOOK drawer
984   (setq org-log-into-drawer t)
985   (setq org-clock-into-drawer "CLOCK")
986 #+END_SRC
987
988 *** Tags
989 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
990   (setq org-tag-alist (quote ((:startgroup)
991                               ("@office" . ?e)
992                               ("@home" . ?h)
993                               (:endgroup)
994                               ("WAITING" . ?w)
995                               ("HOLD" . ?h)
996                               ("CANCELLED" . ?c))))
997
998   ;; Allow setting single tags without the menu
999   (setq org-fast-tag-selection-single-key (quote expert))
1000 #+END_SRC
1001
1002 *** Capture - Refile - Archive
1003
1004 Capture lets you quickly store notes with little interruption of your work flow.
1005
1006 **** Capture Templates
1007
1008 When a new taks needs to be added, categorize it as 
1009
1010 All captured file which need next actions are stored in =refile.org=, 
1011 - A new task / note (t) =refile.org=
1012 - A work task in office =office.org=
1013 - A jourenl =diary.org=
1014 - A new habit (h) =refile.org=
1015
1016 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1017   (setq org-directory "~/org")
1018   (setq org-default-notes-file "~/org/refile.org")
1019   (setq sd/org-diary-file "~/org/diary.org")
1020
1021   (global-set-key (kbd "C-c c") 'org-capture)
1022
1023   (setq org-capture-templates
1024         (quote (("t" "Todo" entry (file org-default-notes-file)
1025                  "* TODO %?\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1026                 ("n" "Note" entry (file org-default-notes-file)
1027                  "* %? :NOTE:\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1028                 ("j" "Journal" entry (file+datetree sd/org-diary-file)
1029                  "* %?\n:LOGBOOK:\n:END:" :clock-in t :clock-resume t)
1030                 ("h" "Habit" entry (file org-default-notes-file)
1031                  "* 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 "))))
1032 #+END_SRC
1033
1034 **** Refiling Tasks
1035
1036 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1037   (setq org-refile-targets (quote (;; (nil :maxlevel . 9)
1038                                    (org-agenda-files :maxlevel . 9))))
1039
1040   (setq org-refile-use-outline-path t)
1041
1042   (setq org-refile-allow-creating-parent-nodes (quote confirm))
1043 #+END_SRC
1044
1045 *** Agenda Setup
1046 Setting agenda files and the agenda view
1047 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1048   (setq org-agenda-files (quote ("~/org/gtd.org")))
1049
1050   ;; only show today's tasks in agenda view
1051   ;; (setq org-agenda-span 'day)
1052   ;; Use current windows for agenda view
1053   ;; (setq org-agenda-window-setup 'current-window)
1054
1055   ;; show all feature entries for repeating tasks,
1056   ;; this is already setting by default
1057   (setq org-agenda-repeating-timestamp-show-all t)
1058
1059   ;; Show all agenda dates - even if they are empty
1060   (setq org-agenda-show-all-dates t)
1061 #+END_SRC
1062
1063 ** Org mobile
1064 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1065   (with-eval-after-load "org"
1066     (require 'org-mobile)
1067     ;; Set to the location of your Org files on your local system
1068     ;; (setq org-directory "~/org")
1069     ;; Set to the name of the file where new notes will be stored
1070     (setq org-mobile-inbox-for-pull "~/org/flagged.org")
1071     ;; Set to <your Dropbox root directory>/MobileOrg.
1072     (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg"))
1073 #+END_SRC
1074
1075 ** Export PDF
1076 Install MacTex-basic [[http://www.tug.org/mactex/morepackages.html][MacTex-basic]]  and some tex packages
1077 #+BEGIN_SRC sh 
1078   wget http://tug.org/cgi-bin/mactex-download/BasicTeX.pkg
1079
1080   sudo tlmgr update --self
1081
1082   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
1083 #+END_SRC
1084
1085 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1086   ;; ;; allow for export=>beamer by placing
1087
1088   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
1089   ;; #+LaTeX_CLASS: beamer in org files
1090   (unless (boundp 'org-export-latex-classes)
1091     (setq org-export-latex-classes nil))
1092   (add-to-list 'org-export-latex-classes
1093     ;; beamer class, for presentations
1094     '("beamer"
1095        "\\documentclass[11pt]{beamer}\n
1096         \\mode<{{{beamermode}}}>\n
1097         \\usetheme{{{{beamertheme}}}}\n
1098         \\usecolortheme{{{{beamercolortheme}}}}\n
1099         \\beamertemplateballitem\n
1100         \\setbeameroption{show notes}
1101         \\usepackage[utf8]{inputenc}\n
1102         \\usepackage[T1]{fontenc}\n
1103         \\usepackage{hyperref}\n
1104         \\usepackage{color}
1105         \\usepackage{listings}
1106         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
1107     frame=single,
1108     basicstyle=\\small,
1109     showspaces=false,showstringspaces=false,
1110     showtabs=false,
1111     keywordstyle=\\color{blue}\\bfseries,
1112     commentstyle=\\color{red},
1113     }\n
1114         \\usepackage{verbatim}\n
1115         \\institute{{{{beamerinstitute}}}}\n          
1116          \\subject{{{{beamersubject}}}}\n"
1117
1118        ("\\section{%s}" . "\\section*{%s}")
1119  
1120        ("\\begin{frame}[fragile]\\frametitle{%s}"
1121          "\\end{frame}"
1122          "\\begin{frame}[fragile]\\frametitle{%s}"
1123          "\\end{frame}")))
1124
1125     ;; letter class, for formal letters
1126
1127     (add-to-list 'org-export-latex-classes
1128
1129     '("letter"
1130        "\\documentclass[11pt]{letter}\n
1131         \\usepackage[utf8]{inputenc}\n
1132         \\usepackage[T1]{fontenc}\n
1133         \\usepackage{color}"
1134  
1135        ("\\section{%s}" . "\\section*{%s}")
1136        ("\\subsection{%s}" . "\\subsection*{%s}")
1137        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
1138        ("\\paragraph{%s}" . "\\paragraph*{%s}")
1139        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
1140
1141
1142   (require 'ox-md)
1143   (require 'ox-beamer)
1144
1145   (setq org-latex-pdf-process
1146         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1147           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1148           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
1149
1150   (setq TeX-parse-self t)
1151
1152   (setq TeX-PDF-mode t)
1153   (add-hook 'LaTeX-mode-hook
1154             (lambda ()
1155               (LaTeX-math-mode)
1156               (setq TeX-master t)))
1157
1158 #+END_SRC
1159
1160 ** Export Html
1161 Color higlight the source code block in exported html, [[http://stackoverflow.com/questions/24082430/org-mode-no-syntax-highlighting-in-exported-html-page][org-mode-no-syntax-highlighting-in-exported-html-page]]
1162 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1163   (use-package htmlize
1164     :ensure t)
1165 #+END_SRC
1166
1167 ** Org structure template
1168 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1169 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1170   ;; ‘s’     ‘#+BEGIN_SRC ... #+END_SRC’
1171   ;; ‘e’     ‘#+BEGIN_EXAMPLE ... #+END_EXAMPLE’
1172   ;; ‘q’     ‘#+BEGIN_QUOTE ... #+END_QUOTE’
1173   ;; ‘v’     ‘#+BEGIN_VERSE ... #+END_VERSE’
1174   ;; ‘c’     ‘#+BEGIN_CENTER ... #+END_CENTER’
1175   ;; ‘l’     ‘#+BEGIN_LaTeX ... #+END_LaTeX’
1176   ;; ‘L’     ‘#+LaTeX:’
1177   ;; ‘h’     ‘#+BEGIN_HTML ... #+END_HTML’
1178   ;; ‘H’     ‘#+HTML:’
1179   ;; ‘a’     ‘#+BEGIN_ASCII ... #+END_ASCII’
1180   ;; ‘A’     ‘#+ASCII:’
1181   ;; ‘i’     ‘#+INDEX:’ line
1182   ;; ‘I’     ‘#+INCLUDE:’ line
1183
1184
1185   (add-to-list 'org-structure-template-alist
1186                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1187   (add-to-list 'org-structure-template-alist
1188                '("R" "#+BEGIN_SRC racket :tangle no :results output replace\n?\n#+END_SRC"))
1189   (add-to-list 'org-structure-template-alist
1190                '("S" "#+BEGIN_SRC sh :results output replace\n?\n#+END_SRC"))
1191   (add-to-list 'org-structure-template-alist
1192                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1193   (add-to-list 'org-structure-template-alist
1194                '("P" "#+BEGIN_SRC perl \n?\n#+END_SRC"))
1195   (add-to-list 'org-structure-template-alist
1196                '("f" "#+BEGIN_SRC fundamental :tangle ?\n\n#+END_SRC"))
1197   (add-to-list 'org-structure-template-alist
1198                '("C" "#+BEGIN_SRC c :tangle ?\n\n#+END_SRC"))
1199   (add-to-list 'org-structure-template-alist
1200                '("m" "\\begin{equation}\n?\n\\end{equation}"))
1201   (add-to-list 'org-structure-template-alist
1202                '("b" "#+STARTUP: showall
1203   ,#+STARTUP: inlineimages
1204   ,#+OPTIONS: toc:nil\n"))
1205   (add-to-list 'org-structure-template-alist
1206                '("d" "#+BEGIN_SRC ditaa :file ?  :cmdline -r -s 0.8 :cache yes \n\n#+END_SRC"))
1207   (add-to-list 'org-structure-template-alist
1208                '("u" "#+BEGIN_SRC plantuml :file ? \n\n#+END_SRC"))
1209
1210 #+END_SRC
1211
1212 ** Org theme
1213 *** variable-pitch-mode and fixed-pitch-mode
1214 [[https://yoo2080.wordpress.com/2013/05/30/monospace-font-in-tables-and-source-code-blocks-in-org-mode-proportional-font-in-other-parts/][monospace font in tables and source code blocks in org-mode, proportional font in other parts]]
1215 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1216   (when (display-graphic-p)
1217     (unless (find-font (font-spec :name "Ubuntu Mono"))
1218       (warn "Font not found Ubuntu Mono"))
1219     (unless (find-font (font-spec :name "Source Code Pro"))
1220       (warn "Font not found Source Code Pro"))
1221     (unless (find-font (font-spec :name "Source Sans Pro"))
1222       (warn "Font not found Source Sans Pro")))
1223
1224   (set-face-attribute 'variable-pitch nil :font "Source Sans Pro" :height 160)
1225   (set-face-attribute 'fixed-pitch nil :font "Source Code Pro" :height (face-attribute 'default :height))
1226
1227
1228   ;; Install Ubuntu Mono fonts and apply it in org-table to align Chinese fonts
1229   ;; (with-eval-after-load "org"
1230   ;;   (mapc (lambda (face)
1231   ;;           (set-face-attribute face nil :inherit 'fixed-pitch))
1232   ;;         (list
1233   ;;          'org-code
1234   ;;          'org-block
1235   ;;          'org-block-background
1236   ;;          'org-block-begin-line
1237   ;;          'org-block-end-line))
1238   ;;   (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height 140)
1239   ;;   (set-face-attribute 'org-formula nil :family "Ubuntu Mono" :height 140)
1240   ;;   ;; org-special-keyword inherited from font-lock-keywork originally; as org is changed to variable-pitch, it cause
1241   ;;   ;; the font in special-keywords are not monospace
1242   ;;   (set-face-attribute 'org-special-keyword nil :inherit '(font-lock-keyword-face fixed-pitch))
1243   ;;   ;; same as above 
1244   ;;   (set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch))
1245   ;;   (set-face-attribute 'org-block-begin-line nil :inherit 'shadow :slant 'italic :foreground nil)
1246   ;;   (set-face-attribute 'org-block-end-line nil :inherit 'shadow :slant 'italic :foreground nil)
1247     
1248   ;;   ;; fix indent broken by variable-pitch-mode
1249   ;;   ;; http://emacs.stackexchange.com/questions/26864/variable-pitch-face-breaking-indentation-in-org-mode
1250   ;;   (require 'org-indent)
1251   ;;   (set-face-attribute 'org-indent nil :inherit '(org-hide fixed-pitch)))
1252
1253   ;; (with-eval-after-load "org"
1254   ;;   (let ((default-font-size (- (face-attribute 'default :height) (if (display-graphic-p) 20 0))))
1255   ;;     (set-face-attribute 'org-code nil :height default-font-size)
1256   ;;     (set-face-attribute 'org-block nil :height default-font-size)
1257   ;;     (set-face-attribute 'org-block-begin-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1258   ;;     (set-face-attribute 'org-block-end-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1259   ;;     (when (find-font (font-spec :name "Ubuntu Mono"))
1260   ;;       (set-face-attribute 'org-table nil :family "Ubutu Mono" :height default-font-size)
1261   ;;       (set-face-attribute 'org-formula nil :family "Ubutu Mono" :height default-font-size))))
1262
1263   (add-hook 'org-mode-hook
1264             (lambda ()
1265               (let ((default-font-size (- (face-attribute 'default :height) (if (display-graphic-p) 20 0))))
1266                 (set-face-attribute 'org-code nil :height default-font-size)
1267                 (set-face-attribute 'org-block nil :height default-font-size)
1268                 (set-face-attribute 'org-block-begin-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1269                 (set-face-attribute 'org-block-end-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1270                 (when (find-font (font-spec :name "Ubuntu Mono"))
1271                   (set-face-attribute 'org-table nil :family "Ubutu Mono" :height default-font-size)
1272                   (set-face-attribute 'org-formula nil :family "Ubutu Mono" :height default-font-size)))))
1273 #+END_SRC
1274
1275 Also correct the face of  =org-meta-line= in =org-table= 
1276 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1277   (with-eval-after-load "org"
1278     (set-face-attribute 'org-meta-line nil :font "Source Code Pro" :height 120 :slant 'italic :inherit 'font-lock-comment-face))
1279 #+END_SRC
1280
1281 *** Org-head face
1282 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1283   ;; (with-eval-after-load "org"
1284   ;;   (let* ((base-height (face-attribute 'variable-pitch :height))
1285   ;;          (base-font-color (face-foreground 'default nil  'default)))
1286   ;;     (set-face-attribute 'org-document-title nil :weight 'bold :height (+ 60 base-height))
1287   ;;     (set-face-attribute 'org-level-1 nil :weight 'bold :height (+ 40 base-height))
1288   ;;     (set-face-attribute 'org-level-2 nil :weight 'bold :height (+ 30 base-height))
1289   ;;     (set-face-attribute 'org-level-3 nil :weight 'bold :height (+ 20 base-height))
1290   ;;     (set-face-attribute 'org-level-4 nil :weight 'bold :height (+ 10 base-height))
1291   ;;     (set-face-attribute 'org-level-5 nil :weight 'bold)
1292   ;;     (set-face-attribute 'org-level-6 nil :weight 'bold)
1293   ;;     (set-face-attribute 'org-level-7 nil :weight 'bold)
1294   ;;     (set-face-attribute 'org-level-8 nil :weight 'bold)))
1295 #+END_SRC
1296
1297 ** Org Blog
1298 Fetch dependencies file, which is not in this repository.
1299 #+BEGIN_SRC perl :results silent :tangle yes
1300   print `curl https://raw.githubusercontent.com/seudut/blog/master/my-publish.el -o ./elisp/my-publish.el`;
1301 #+END_SRC
1302
1303 Load 
1304 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1305   (add-to-list 'load-path "~/.emacs.d/elisp")
1306
1307   (when (file-exists-p "~/.emacs.d/elisp/my-publish.el")
1308     (require 'my-publish)
1309     (blog-setup-project-alist "~/Private/blog/"))
1310 #+END_SRC
1311
1312
1313 Refer to [[http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html][org-publish-html-tutorial]], and [[https://ogbe.net/blog/blogging_with_org.html][blogging_with_org]]
1314
1315 * Magit
1316 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1317 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1318 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1319   (use-package magit
1320     :ensure t
1321     :init
1322     ;; don't ask me to confirm the unsaved change 
1323     (setq magit-save-repository-buffers nil)
1324     ;; default is 50
1325     (setq git-commit-summary-max-length 100)
1326     :commands magit-status magit-blame
1327     :config
1328     (dolist (map (list magit-status-mode-map
1329                        magit-log-mode-map
1330                        magit-diff-mode-map
1331                        magit-staged-section-map))
1332       (define-key map "j" 'magit-section-forward)
1333       (define-key map "k" 'magit-section-backward)
1334       (define-key map "D" 'magit-discard)
1335       (define-key map "O" 'magit-discard-file)
1336       (define-key map "n" nil)
1337       (define-key map "p" nil)
1338       (define-key map "v" 'recenter-top-bottom)
1339       (define-key map "i" 'magit-section-toggle))
1340     (define-key magit-mode-map "q" (lambda () (interactive)
1341                                      (magit-mode-bury-buffer t))))
1342 #+END_SRC
1343
1344 * Eshell
1345 ** Eshell alias
1346 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1347   (defalias 'e 'find-file)
1348   (defalias 'ff 'find-file)
1349   (defalias 'ee 'find-files)
1350 #+END_SRC
1351
1352 ** eshell temp directory
1353 set default eshell history folder
1354 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1355   (setq eshell-directory-name (concat  sd-temp-directory "eshell"))
1356 #+END_SRC
1357
1358 ** Eshell erase buffer
1359 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1360   (require 'utilities)
1361
1362   ;; (add-hook 'eshell-mode-hook (lambda ()
1363   ;;                               (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1364   (add-hook 'eshell-mode-hook (apply-partially #'local-set-key (kbd "C-l") 'sd/eshell-clear-buffer))
1365   ;; (add-hook 'eshell-mode-map (lambda () (interactive)
1366   ;;                              (define-key eshell-mode-map (kbd "<tab>") 'completion-at-point)))
1367 #+END_SRC
1368
1369 ** Toggle Eshell
1370 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1371 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1372   (defun sd/window-has-eshell ()
1373     "Check if current windows list has a eshell buffer, and return the window"
1374     (interactive)
1375     (let ((ret nil))
1376       (walk-windows (lambda (window)
1377                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1378                                  'eshell-mode)
1379                           (setq ret window)))
1380                     nil nil)
1381       ret))
1382
1383   (defun sd/toggle-project-eshell ()
1384     "Toggle a eshell buffer vertically"
1385     (interactive)
1386     (if (sd/window-has-eshell)
1387         (if (equal major-mode 'eshell-mode)
1388             (progn
1389               (if (equal (length (window-list)) 1)
1390                   (mode-line-other-buffer)
1391                 (delete-window)))
1392           (select-window (sd/window-has-eshell)))
1393       (progn
1394         (split-window-vertically (- (/ (window-total-height) 3)))
1395         (other-window 1)
1396         (if (projectile-project-p)
1397             (projectile-run-eshell)
1398           (eshell)))))
1399
1400   (global-set-key (kbd "s-e") 'sd/toggle-project-eshell)
1401 #+END_SRC
1402
1403 ** exec-path-from-shell
1404 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1405   (use-package exec-path-from-shell
1406     :ensure t
1407     :init
1408     (setq exec-path-from-shell-check-startup-files nil)
1409     :config
1410     (exec-path-from-shell-initialize))
1411 #+END_SRC
1412
1413 * Misc Settings
1414 ** [[https://github.com/abo-abo/hydra][Hydra]]
1415 *** hydra install
1416 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1417   (use-package hydra
1418     :ensure t)
1419   ;; disable new line in minibuffer when hint hydra
1420   (setq hydra-lv nil)
1421 #+END_SRC
1422
1423 *** Windmove Splitter
1424
1425 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1426
1427 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1428
1429   (defun hydra-move-splitter-left (arg)
1430     "Move window splitter left."
1431     (interactive "p")
1432     (if (let ((windmove-wrap-around))
1433           (windmove-find-other-window 'right))
1434         (shrink-window-horizontally arg)
1435       (enlarge-window-horizontally arg)))
1436
1437   (defun hydra-move-splitter-right (arg)
1438     "Move window splitter right."
1439     (interactive "p")
1440     (if (let ((windmove-wrap-around))
1441           (windmove-find-other-window 'right))
1442         (enlarge-window-horizontally arg)
1443       (shrink-window-horizontally arg)))
1444
1445   (defun hydra-move-splitter-up (arg)
1446     "Move window splitter up."
1447     (interactive "p")
1448     (if (let ((windmove-wrap-around))
1449           (windmove-find-other-window 'up))
1450         (enlarge-window arg)
1451       (shrink-window arg)))
1452
1453   (defun hydra-move-splitter-down (arg)
1454     "Move window splitter down."
1455     (interactive "p")
1456     (if (let ((windmove-wrap-around))
1457           (windmove-find-other-window 'up))
1458         (shrink-window arg)
1459       (enlarge-window arg)))
1460
1461 #+END_SRC
1462
1463 *** hydra misc
1464 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1465   (defhydra sd/hydra-misc (:color red :columns nil)
1466     "Misc"
1467     ("e" eshell "eshell" :exit t)
1468     ("p" (lambda ()
1469            (interactive)
1470            (if (not (eq nil (get-buffer "*Packages*")))
1471                (switch-to-buffer "*Packages*")
1472              (package-list-packages)))
1473      "list-package" :exit t)
1474     ("g" magit-status "git-status" :exit t)
1475     ("'" mode-line-other-buffer "last buffer" :exit t)
1476     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1477     ("m" man "man" :exit t)
1478     ("d" dired-jump "dired" :exit t)
1479     ("b" ibuffer "ibuffer" :exit t)
1480     ("q" nil "quit")
1481     ("f" nil "quit"))
1482
1483   (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1484 #+END_SRC
1485
1486 *** hydra launcher
1487 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1488   (defhydra sd/hydra-launcher (:color blue :columns 2)
1489     "Launch"
1490     ("e" emms "emms" :exit t)
1491     ("q" nil "cancel"))
1492 #+END_SRC
1493
1494 ** Line Number
1495 Enable linum mode on programming modes
1496 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1497   (add-hook 'prog-mode-hook 'linum-mode)
1498 #+END_SRC
1499
1500 Fix the font size of line number
1501 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1502   (defun fix-linum-size ()
1503     (interactive)
1504     (set-face-attribute 'linum nil :height 110))
1505
1506   (add-hook 'linum-mode-hook 'fix-linum-size)
1507 #+END_SRC
1508
1509 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1510 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1511   (use-package linum-relative
1512     :ensure t
1513     :init
1514     (setq linum-relative-current-symbol "")
1515     :config
1516     (defun linum-new-mode ()
1517       "If line numbers aren't displayed, then display them.
1518   Otherwise, toggle between absolute and relative numbers."
1519       (interactive)
1520       (if linum-mode
1521           (linum-relative-toggle)
1522         (linum-mode 1)))
1523
1524     :bind
1525     ("A-k" . linum-new-mode))
1526
1527   ;; auto enable linum-new-mode in programming modes
1528   (add-hook 'prog-mode-hook 'linum-relative-mode)
1529 #+END_SRC
1530
1531 ** Save File Position
1532 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1533   (require 'saveplace)
1534   (setq save-place-file "~/.emacs.d/temp/saveplace")
1535   (setq-default save-place t)
1536   (setq save-place-forget-unreadable-files t)
1537   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1538 #+END_SRC
1539
1540 ** Multi-term
1541 define =multi-term= mapping to disable some mapping which is used globally.
1542 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1543   (use-package multi-term
1544     :ensure t)
1545
1546   (defun sd/term-mode-mapping ()
1547     (mapcar #'(lambda (map)
1548               (define-key map (kbd "C-o") nil)
1549               (define-key map (kbd "C-g") nil))
1550             (list term-mode-map
1551                   term-raw-map)))
1552
1553   (with-eval-after-load 'multi-term
1554     (sd/term-mode-mapping))
1555 #+END_SRC
1556
1557 ** ace-link
1558 [[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
1559 Type =o= to go to the link
1560 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1561   (use-package ace-link
1562     :ensure t
1563     :init
1564     (ace-link-setup-default))
1565 #+END_SRC
1566
1567 ** Smart Parens
1568 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1569   ;; (use-package smartparens
1570   ;;   :ensure t
1571   ;;   :config
1572   ;;   (progn
1573   ;;     (require 'smartparens-config)
1574   ;;     (add-hook 'prog-mode-hook 'smartparens-mode)))
1575 #+END_SRC
1576
1577 ** Ace-Windows
1578 [[https://github.com/abo-abo/ace-window][ace-window]] 
1579 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1580   (use-package ace-window
1581     :ensure t
1582     :defer t
1583                                           ;  :init
1584                                           ;  (global-set-key (kbd "M-o") 'ace-window)
1585     :config
1586     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1587 #+END_SRC
1588
1589 ** Which key
1590 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1591 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1592   ;; (use-package which-key
1593   ;;   :ensure t
1594   ;;   :config
1595   ;;   (which-key-mode))
1596 #+END_SRC
1597
1598 ** View only for some directory
1599 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]]
1600 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1601   (dir-locals-set-class-variables
1602    'emacs
1603    '((nil . ((buffer-read-only . t)
1604              (show-trailing-whitespace . nil)
1605              (tab-width . 8)
1606              (eval . (whitespace-mode -1))
1607              ;; (eval . (when buffer-file-name
1608              ;;           (setq-local view-no-disable-on-exit t)
1609              ;;           (view-mode-enter)))
1610              ))))
1611
1612   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1613   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1614   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1615   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1616   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1617
1618   ;; temp-mode.el
1619   ;; Temporary minor mode
1620   ;; Main use is to enable it only in specific buffers to achieve the goal of
1621   ;; buffer-specific keymaps
1622
1623   ;; (defvar sd/temp-mode-map (make-sparse-keymap)
1624   ;;   "Keymap while temp-mode is active.")
1625
1626   ;; ;;;###autoload
1627   ;; (define-minor-mode sd/temp-mode
1628   ;;   "A temporary minor mode to be activated only specific to a buffer."
1629   ;;   nil
1630   ;;   :lighter " Temp"
1631   ;;   sd/temp-mode-map)
1632
1633   ;; (defun sd/temp-hook ()
1634   ;;   (if sd/temp-mode
1635   ;;       (progn
1636   ;;      (define-key sd/temp-mode-map (kbd "q") 'quit-window))))
1637
1638   ;; (add-hook 'lispy-mode-hook (lambda ()
1639   ;;                           (sd/temp-hook)))
1640 #+END_SRC
1641
1642 ** Info plus
1643 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1644   (el-get-bundle info+
1645     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1646     ;; (require 'info+)
1647     )
1648
1649   (with-eval-after-load 'info
1650     (require 'info+))
1651 #+END_SRC
1652
1653 ** advice info
1654 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1655   (defun sd/info-mode ()
1656     (interactive)
1657     (unless (equal major-mode 'Info-mode)
1658       (unless (> (length (window-list)) 1)
1659         (split-window-right))
1660       (other-window 1)))
1661
1662   ;; open Info buffer in other window instead of current window
1663   (defadvice info (before my-info (&optional file buf) activate)
1664     (sd/info-mode))
1665
1666   (defadvice Info-exit (after my-info-exit activate)
1667     (sd/delete-current-window))
1668 #+END_SRC
1669
1670 ** Demo It
1671 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1672   (use-package org-tree-slide
1673     :ensure t)
1674 #+END_SRC
1675
1676 ** Presentation
1677 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1678   (use-package org-tree-slide
1679     :ensure
1680     :config
1681     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1682     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1683     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1684     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1685 #+END_SRC
1686
1687 ** pdf-tools
1688 #+BEGIN_SRC sh
1689   #brew install poppler
1690 #+END_SRC
1691
1692 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1693   ;(use-package pdf-tools
1694   ;  :ensure t
1695   ;  :init
1696   ;  ;; run to complete the installation
1697   ;  (pdf-tools-install)
1698   ;  :config
1699   ;  (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1700   ;  (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1701
1702   ;(defun sd/pdf-outline-map ()
1703   ;  "My keybindings in pdf-outline-map"
1704   ;  (interactive)
1705   ;  (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1706   ;  (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1707   ;  (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1708    ; (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1709 #+END_SRC
1710
1711 ** help-mode
1712 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1713   (defun sd/help-mode-hook ()
1714     "Mapping for help mode"
1715     (define-key help-mode-map "j" 'next-line)
1716     (define-key help-mode-map "k" 'previous-line)
1717     (define-key help-mode-map "h" 'forward-char)
1718     (define-key help-mode-map "l" 'forward-char)
1719     (define-key help-mode-map "H" 'describe-mode)
1720     (define-key help-mode-map "v" 'recenter-top-bottom)
1721     (define-key help-mode-map "i" 'forward-button)
1722     (define-key help-mode-map "I" 'backward-button)
1723     (define-key help-mode-map "o" 'ace-link-help))
1724
1725   (add-hook 'help-mode-hook 'sd/help-mode-hook)
1726 #+END_SRC
1727
1728 Wiki [[http://stackoverflow.com/questions/3480173/show-keys-in-emacs-keymap-value][show-keys-in-emacs-keymap-value]], Helpplus mode can show keymap as human-readable, use ~describe-keymap~ or =C-h M-k=
1729
1730 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1731   (el-get-bundle help-macro+
1732     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-macro+.el"
1733     :features help-macro+)
1734   (el-get-bundle help+
1735     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help+.el"
1736     :features help+)
1737   (el-get-bundle help-fns+
1738     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-fns+.el"
1739     :features help-fns+)
1740   (el-get-bundle help-mode+
1741     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-mode+.el"
1742     :features help-mode+)
1743 #+END_SRC
1744
1745 ** goto-last-change
1746 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1747   (use-package goto-last-change
1748     :ensure t)
1749 #+END_SRC
1750
1751 ** Ag
1752 install =ag=, =the-silver-searcher= by homebrew on mac
1753 #+BEGIN_SRC sh
1754 brew install the-silver-searcher
1755 #+END_SRC
1756
1757 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1758   (use-package ag
1759     :ensure t)
1760 #+END_SRC
1761
1762 ** Local Variable hooks
1763 [[https://www.emacswiki.org/emacs/LocalVariables][LocalVariables]], use =hack-local-variables-hook=, run a hook to set local variable in mode hook
1764 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1765   ;; make Emacs run a new "local variables hook" for each major mode
1766   (add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
1767
1768   (defun run-local-vars-mode-hook ()
1769     "Run a hook for the major-mode after the local variables have been processed."
1770     (run-hooks (intern (concat (symbol-name major-mode) "-local-vars-hook"))))
1771
1772   ;;   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
1773 #+END_SRC
1774
1775 ** Table
1776 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1777   (add-hook 'text-mode-hook 'table-recognize)
1778 #+END_SRC
1779
1780 ** url-download
1781 To download file in =elisp=, best is =url-copy-file=, here refer [[http://stackoverflow.com/questions/4448055/download-a-file-with-emacs-lisp][download-a-file-with-emacs-lisp]] using =url-retrieve-synchronously= wrapping
1782 as a http download client tool
1783 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1784   (defun sd/download-file (&optional url download-dir download-name)
1785     (interactive)
1786     (let ((url (or url
1787                    (read-string "Enter download URL: ")))
1788           (download-dir (read-directory-name "Save to (~/Downloads): " "~/Downloads" "~/Downloads" 'confirm' nil)))
1789       (let ((download-buffer (url-retrieve-synchronously url)))
1790         (save-excursion
1791           (set-buffer download-buffer)
1792           ;; we may have to trim the http response
1793           (goto-char (point-min))
1794           (re-search-forward "^$" nil 'move)
1795           (forward-char)
1796           (delete-region (point-min) (point))
1797           (write-file (concat (or download-dir
1798                                   "~/Downloads/")
1799                               (or download-name
1800                                   (car (last (split-string url "/" t))))))))))
1801 #+END_SRC
1802
1803 * Dired
1804 ** Dired basic
1805 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1806   (setq dired-dwim-target t)
1807
1808   (use-package dired-details
1809     :ensure t
1810     :config
1811     (setq-default dired-details-hidden-string "--- ")
1812     (dired-details-install))
1813 #+END_SRC
1814
1815 ** Dired functions
1816 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1817   (defun sd/dired-next-line (count)
1818     "Move to next line, and always focus on the file name."
1819     (interactive "p")
1820     (dired-next-line count)
1821     (dired-move-to-filename))
1822
1823   (defun sd/dired-previous-line (count)
1824     "Move to previous line, and always focus on the file name."
1825     (interactive "p")
1826     (dired-previous-line count)
1827     (dired-move-to-filename))
1828
1829   (defun sd/dired-up-directory ()
1830     "Go to up directory"
1831     (interactive)
1832     (let ((old (current-buffer)))
1833       (dired-up-directory)
1834       (kill-buffer old)))
1835 #+END_SRC
1836
1837 ** Dired bindings
1838 =C-o= is defined as a global key for window operation, here unset it in dired mode
1839 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1840   (defun sd/dired-key-map ()
1841     "My keybindings for dired"
1842     (interactive)
1843     ;; these two prefix are used globally
1844     (define-key dired-mode-map (kbd "C-o") nil)
1845     (define-key dired-mode-map (kbd "M-s") nil)
1846     ;; toggle hidden files
1847     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1848     ;; scroll 
1849     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1850     (define-key dired-mode-map (kbd "DEL") 'scroll-down-command)
1851     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1852     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1853     (define-key dired-mode-map (kbd "g") 'dired-goto-file)
1854     ;; (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1855     ;; jump to fil/dirs
1856     (define-key dired-mode-map (kbd "f") 'dired-isearch-filenames)
1857     ;; subdir
1858     ;; i dired-maybe-insert-subdir
1859     ;; o dired-find-file-other-window (switch to other window)
1860     ;; O dired-display-file
1861     (define-key dired-mode-map (kbd "G") 'ido-dired)
1862     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file)
1863     (define-key dired-mode-map (kbd "h") 'dired-summary)
1864     (define-key dired-mode-map (kbd "r") 'revert-buffer)
1865     (define-key dired-mode-map (kbd "l") 'dired-display-file)
1866     (define-key dired-mode-map [C-backspace] 'dired-up-directory)
1867     (define-key dired-mode-map (kbd "?") 'describe-mode)
1868     (define-key dired-mode-map (kbd "z") #'sd/dired-get-size)
1869     (define-key dired-mode-map (kbd "C-d") 'dired-kill-subdir)
1870     (define-key dired-mode-map (kbd "M-d") 'dired-kill-subdir)
1871     (define-key dired-mode-map (kbd "J") 'diredp-next-subdir)
1872     (define-key dired-mode-map (kbd "TAB") 'diredp-next-subdir)
1873     (define-key dired-mode-map (kbd "K") 'diredp-prev-subdir)
1874     (define-key dired-mode-map (kbd "O") 'dired-display-file)
1875     (define-key dired-mode-map (kbd "I") 'other-window)
1876     (define-key dired-mode-map (kbd "o") 'other-window)) 
1877
1878   (use-package dired
1879     :config
1880     (require 'dired-x)
1881     ;; also load dired+
1882     (use-package dired+
1883       :ensure t
1884       :init (setq diredp-hide-details-initially-flag nil))
1885     
1886     (setq dired-omit-mode t)
1887     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1888     (add-hook 'dired-mode-hook (lambda ()
1889                                  (sd/dired-key-map)
1890                                  (dired-omit-mode))))
1891
1892   (defadvice dired-summary (around sd/dired-summary activate)
1893     "Revisied dired summary."
1894     (interactive)
1895     (dired-why)
1896     (message
1897      "Δ: d-delete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, c-create, +new dir, r-evert, /-filter, v-iew, l-ist, z-Size, h-summary, ?-help"))
1898
1899   (defun sd/dired-high-level-dir ()
1900     "Go to higher level directory"
1901     (interactive)
1902     (find-alternate-file ".."))
1903 #+END_SRC
1904
1905 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1906   (defun sd/dired-new-file-and-open ()
1907     "Create a new file in dired mode"
1908     (interactive)
1909     (call-interactively 'find-file))
1910
1911   (defun sd/dired-new-file (file)
1912     "Create a new file called FILE.
1913   If FILE already exists, signal an error."
1914     (interactive
1915      (list (read-file-name "Create file: " (dired-current-directory))))
1916     (let* ((expanded (expand-file-name file)))
1917       (if (file-exists-p expanded)
1918           (error "Cannot create file %s: file exists" expanded))
1919       (write-region "" nil expanded t)
1920       (when expanded
1921         (dired-add-file expanded)
1922         (dired-move-to-filename))))
1923
1924   ;; copied from abo-abo's config
1925   (defun sd/dired-get-size ()
1926     (interactive)
1927     (let ((files (dired-get-marked-files)))
1928       (with-temp-buffer
1929         (apply 'call-process "/usr/bin/du" nil t nil "-sch" files)
1930         (message
1931          "Size of all marked files: %s"
1932          (progn
1933            (re-search-backward "\\(^[ 0-9.,]+[A-Za-z]+\\).*total$")
1934            (match-string 1))))))
1935 #+END_SRC
1936
1937 ** disable ido when dired new file
1938 When create a new directory, I want to disalbe =ido= completion. see [[http://stackoverflow.com/questions/7479565/emacs-ido-mode-and-creating-new-files-in-directories-it-keeps-changing-the-dire][here]]. Thhis code snippets copied
1939 from [[https://emacs.stackexchange.com/questions/13713/how-to-disable-ido-in-dired-create-directory/13795#13795?newreg%3Ddb17c20f7af3490fb11cf15f1d888e9e][How to disable IDO in ‘dired-create-directory’]]
1940 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1941   (defun mk-anti-ido-advice (func &rest args)
1942     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1943     (interactive)
1944     (let ((read-file-name-function #'read-file-name-default)
1945           (completing-read-function #'completing-read-default))
1946       (if (called-interactively-p 'any)
1947           (call-interactively func)
1948         (apply func args))))
1949
1950   (defun mk-disable-ido (command)
1951     "Disable IDO when command COMMAND is called."
1952     (advice-add command :around #'mk-anti-ido-advice))
1953
1954   (defun mk-anti-ido-no-completing-advice (func &rest args)
1955     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1956     (interactive)
1957     (let ((read-file-name-function #'read-file-name-default)
1958           ;; (completing-read-function #'completing-read-default)
1959           )
1960       (if (called-interactively-p 'any)
1961           (call-interactively func)
1962         (apply func args))))
1963
1964   (defun mk-disable-ido-no-completing (command)
1965     "Disable IDO when command COMMAND is called."
1966     (advice-add command :around #'mk-anti-ido-no-completing-advice))
1967 #+END_SRC
1968
1969 Disalble =ido= when new a directory or file in =dired= mode
1970 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1971   ;; call the function which you want to disable ido
1972   (mk-disable-ido 'dired-create-directory)
1973   (mk-disable-ido 'sd/dired-new-file-and-open)
1974   (mk-disable-ido 'sd/dired-new-file)
1975   (mk-disable-ido-no-completing 'dired-goto-file)
1976 #+END_SRC
1977
1978 ** Dired open with
1979 =!= =dired-do-shell-command=
1980 =&= =dired-do-async-shell-command=
1981 here on Mac, just use "open" commands to pen =.pdf=,  =.html= and image files
1982 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1983   (setq dired-guess-shell-alist-user
1984         '(("\\.pdf\\'" "open" "okular")
1985           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
1986           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "open")
1987           ("\\.\\(?:xcf\\)\\'" "gimp")
1988           ("\\.csv\\'" "libreoffice")
1989           ("\\.tex\\'" "pdflatex" "latex")
1990           ("\\.\\(?:mp4\\|mkv\\|avi\\|rmvb\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'" "mplayer")
1991           ("\\.\\(?:mp3\\|flac\\)\\'" "rhythmbox")
1992           ("\\.html?\\'" "open")
1993           ("\\.dmg\\'" "open")
1994           ("\\.cue?\\'" "audacious")))
1995
1996
1997   (defun sd/dired-start-process (cmd &optional file-list)
1998     (interactive
1999      (let ((files (dired-get-marked-files
2000                    t current-prefix-arg)))
2001        (list
2002         (unless (eq system-type 'windows-nt)
2003           (dired-read-shell-command "& on %s: "
2004                                     current-prefix-arg files))
2005         files)))
2006     
2007     (if (eq system-type 'windows-nt)
2008         (dolist (file file-list)
2009           (w32-shell-execute "open" (expand-file-name file)))
2010       (let (list-switch)
2011         (start-process
2012          cmd nil shell-file-name
2013          shell-command-switch
2014          (format
2015           "nohup 1>/dev/null 2>/dev/null %s \"%s\""
2016           cmd
2017           ;; (if (and (> (length file-list) 1)
2018           ;;          (setq list-switch
2019           ;;                (cadr (assoc cmd ora-dired-filelist-cmd))))
2020           ;;     (format "%s %s" cmd list-switch)
2021           ;;   cmd)
2022           (mapconcat #'expand-file-name file-list "\" \""))))))
2023 #+END_SRC
2024
2025 ** dired-hacks
2026 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2027   (use-package dired-hacks-utils
2028     :ensure t
2029     :defer t)
2030 #+END_SRC
2031
2032 ** dired-narrow
2033 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2034   ;;narrow dired to match filter
2035   (use-package dired-narrow
2036     :ensure t
2037     :commands (dired-narrow)
2038     :bind (:map dired-mode-map
2039                 ("/" . dired-narrow)))
2040 #+END_SRC
2041
2042 * Ibuffer
2043 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2044   (global-set-key (kbd "s-b") 'ibuffer)
2045
2046   (with-eval-after-load 'ibuffer
2047     (define-key ibuffer-mode-map (kbd "C-o") nil)
2048     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
2049     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
2050     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
2051     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer)
2052     (define-key ibuffer-mode-map (kbd "h") 'sd/ibuffer-summary))
2053
2054   (defun sd/ibuffer-summary ()
2055     "Show summary of keybindings in ibuffer mode"
2056     (interactive)
2057     (message
2058      "Β: m|u - (un)mark, /-filter, //-remove filter, t, RET, g, k, S, D, Q; q to quit; h for help"))
2059 #+END_SRC
2060
2061 * Completion
2062 ** company mode and company-statistics
2063 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2064   (use-package company
2065     :ensure t
2066     :diminish company-mode
2067     :init (setq company-idle-delay 0.1)
2068     (setq company-selection-wrap-around t)
2069     :config
2070     (define-key company-active-map (kbd "M-n") nil)
2071     (define-key company-active-map (kbd "M-p") nil)
2072     (define-key company-active-map (kbd "SPC") #'sd/company-stop-input-space)
2073     (define-key company-active-map (kbd "C-n") #'company-select-next)
2074     (define-key company-active-map (kbd "C-p") #'company-select-previous)
2075     ;; should map both (kbd "TAB") and [tab],https://github.com/company-mode/company-mode/issues/75
2076     (define-key company-active-map (kbd "TAB") #'company-complete-selection)
2077     (define-key company-active-map [tab] #'company-complete-selection)
2078     (define-key company-active-map (kbd "C-w") nil)
2079     (define-key company-active-map (kbd "C-h") nil)
2080     (global-company-mode)
2081     ;; magig-commit is text-modeh
2082     (setq company-global-modes '(not org-mode magit-status-mode text-mode eshell-mode gfm-mode markdown-mode)))
2083
2084   (use-package company-statistics
2085     :ensure t
2086     :config
2087     (company-statistics-mode))
2088
2089   (defun sd/company-stop-input-space ()
2090     "Stop completing and input a space,a workaround of a semantic issue `https://github.com/company-mode/company-mode/issues/614'"
2091     (interactive)
2092     (company-abort)
2093     (insert " "))
2094 #+END_SRC
2095
2096 ** YASnippet
2097 *** yasnippet
2098 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2099   (use-package yasnippet
2100     :ensure t
2101     :defer t
2102     :init
2103     (add-hook 'prog-mode-hook #'yas-minor-mode)
2104     :config
2105     (yas-reload-all))
2106 #+END_SRC
2107
2108
2109 ** company and yasnippet
2110 Add yasnippet as the company candidates
2111 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2112   ;Add yasnippet support for all company backends
2113   ;https://github.com/syl20bnr/spacemacs/pull/179
2114   (defvar company-mode/enable-yas t
2115     "Enable yasnippet for all backends.")
2116
2117   (defun company-mode/backend-with-yas (backend)
2118     (if (or (not company-mode/enable-yas) (and (listp backend) (member 'company-yasnippet backend)))
2119         backend
2120       (append (if (consp backend) backend (list backend))
2121               '(:with company-yasnippet))))
2122
2123   (setq company-backends (mapcar #'company-mode/backend-with-yas company-backends))
2124 #+END_SRC
2125
2126 Refer, [[http://emacs.stackexchange.com/questions/7908/how-to-make-yasnippet-and-company-work-nicer][how-to-make-yasnippet-and-company-work-nicer]]
2127 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2128   (defun check-expansion ()
2129     (save-excursion
2130       (if (looking-at "\\_>") t
2131         (backward-char 1)
2132         (if (looking-at "\\.") t
2133           (backward-char 1)
2134           (if (looking-at "->") t nil)))))
2135
2136   (defun do-yas-expand ()
2137     (let ((yas/fallback-behavior 'return-nil))
2138       (yas/expand)))
2139
2140   (defun tab-indent-or-complete ()
2141     (interactive)
2142     (cond
2143      ((minibufferp)
2144       (minibuffer-complete))
2145      (t
2146       (indent-for-tab-command)
2147       (if (or (not yas/minor-mode)
2148               (null (do-yas-expand)))
2149           (if (check-expansion)
2150               (progn
2151                 (company-manual-begin)
2152                 (if (null company-candidates)
2153                     (progn
2154                       (company-abort)
2155                       (indent-for-tab-command)))))))))
2156
2157   (defun tab-complete-or-next-field ()
2158     (interactive)
2159     (if (or (not yas/minor-mode)
2160             (null (do-yas-expand)))
2161         (if company-candidates
2162             (company-complete-selection)
2163           (if (check-expansion)
2164               (progn
2165                 (company-manual-begin)
2166                 (if (null company-candidates)
2167                     (progn
2168                       (company-abort)
2169                       (yas-next-field))))
2170             (yas-next-field)))))
2171
2172   (defun expand-snippet-or-complete-selection ()
2173     (interactive)
2174     (if (or (not yas/minor-mode)
2175             (null (do-yas-expand))
2176             (company-abort))
2177         (company-complete-selection)))
2178
2179   (defun abort-company-or-yas ()
2180     (interactive)
2181     (if (null company-candidates)
2182         (yas-abort-snippet)
2183       (company-abort)))
2184
2185   '
2186   ;; (require 'company)
2187   ;; (require 'yasnippet)
2188
2189
2190   ;; (global-set-key [tab] 'tab-indent-or-complete)
2191   ;; (global-set-key (kbd "TAB") 'tab-indent-or-complete)
2192   ;; (global-set-key [(control return)] 'company-complete-common)
2193
2194   ;; (define-key company-active-map [tab] 'expand-snippet-or-complete-selection)
2195   ;; (define-key company-active-map (kbd "TAB") 'expand-snippet-or-complete-selection)
2196
2197   ;; (define-key yas-minor-mode-map [tab] nil)
2198   ;; (define-key yas-minor-mode-map (kbd "TAB") nil)
2199
2200   ;; (define-key yas-keymap [tab] 'tab-complete-or-next-field)
2201   ;; (define-key yas-keymap (kbd "TAB") 'tab-complete-or-next-field)
2202   ;; (define-key yas-keymap [(control tab)] 'yas-next-field)
2203   ;; (define-key yas-keymap (kbd "C-g") 'abort-company-or-yas)
2204 #+END_SRC
2205
2206 * Libs
2207 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2208   (use-package s
2209     :ensure t)
2210 #+END_SRC
2211
2212 * Programming Language
2213 ** Color identiifiers mode
2214 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2215   (use-package color-identifiers-mode
2216     :ensure t
2217     :init
2218     (dolist (mode '(emacs-lisp-mode-hook
2219                     c-mode-hook
2220                     c++-mode-hook))
2221       (add-hook mode #'color-identifiers-mode))
2222     :diminish color-identifiers-mode)
2223
2224   (global-prettify-symbols-mode t)
2225 #+END_SRC
2226 ** Font lock face
2227
2228 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2229   (set-face-attribute 'font-lock-keyword-face nil :foreground "#F92672"  :weight 'bold)
2230   (set-face-attribute 'font-lock-builtin-face nil :weight 'bold)
2231   (set-face-attribute 'font-lock-function-name-face nil :foreground "#A6E22E" :weight 'normal :slant 'normal)
2232   (set-face-attribute 'font-lock-variable-name-face nil :foreground "#00FF00")
2233
2234   (font-lock-add-keywords 'c-mode
2235                           ;; highlight %s \n
2236                           '(("\\([%\\][a-zA-Z]\\)" (1  font-lock-keyword-face prepend))
2237                             ("[^[:alpha:]]\\([[:digit:]]*\\)[^[:alpha:]]" (1 font-lock-constant-face append))
2238                             ;; hex number
2239                             ("[^[:alpha:]]\\(0[x\\|X][0-9a-fA-F]*\\)[^[:alpha:]]" (1 font-lock-constant-face append))
2240                             ;; hightlight the function call
2241                             ("\\s\"?\\(\\(\\sw\\|\\s_\\)+\\(<-\\)?\\)\\s\"?*\\s-*(" (1 font-lock-function-name-face))) t)
2242 #+END_SRC
2243
2244 ** Emacs Lisp
2245 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
2246 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
2247 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2248   (use-package lispy
2249     :ensure t
2250     :init
2251     (setq lispy-delete-backward-recenter 0)
2252     (with-eval-after-load "lispy"
2253       (define-key lispy-mode-map (kbd "M-o") nil)
2254       (define-key lispy-mode-map (kbd "g") 'special-lispy-goto-local)
2255       (define-key lispy-mode-map (kbd "G") 'special-lispy-goto)
2256       (define-key lispy-mode-map (kbd "M-m") 'back-to-indentation))
2257     :config
2258     (add-hook 'emacs-lisp-mode-hook (apply-partially #'lispy-mode 1)))
2259 #+END_SRC
2260
2261 ** Perl
2262 *** CPerl mode
2263 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
2264 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2265   (defalias 'perl-mode 'cperl-mode)
2266
2267   ;; (setq cperl-hairy t)
2268   ;; Turns on most of the CPerlMode options
2269   (setq cperl-auto-newline t)
2270   (setq cperl-highlight-variables-indiscriminately t)
2271   ;(setq cperl-indent-level 4)
2272   ;(setq cperl-continued-statement-offset 4)
2273   (setq cperl-close-paren-offset -4)
2274   (setq cperl-indent-parents-as-block t)
2275   (setq cperl-tab-always-indent t)
2276   ;(setq cperl-brace-offset  0)
2277
2278   (add-hook 'cperl-mode-hook (apply-partially #'cperl-set-style "C++"))
2279
2280   (defalias 'perldoc 'cperl-perldoc)
2281 #+END_SRC
2282
2283 *** Perl template
2284 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
2285 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2286   (eval-after-load 'autoinsert
2287     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
2288        '(
2289          "Empty"
2290          "#!/usr/bin/perl -w" \n
2291          \n
2292          "use strict;" >  \n \n
2293          > _
2294          )))
2295 #+END_SRC
2296
2297 *** Perl Keywords
2298 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2299   (font-lock-add-keywords 'cperl-mode
2300                           '(("\\(say\\)" . cperl-nonoverridable-face)
2301                             ("\\([0-9.]\\)*" . font-lock-constant-face)
2302                             ("\".*\\(\\\n\\).*\"" 1 font-lock-constant-face prepend)
2303                             ("\n" 0 font-lock-constant-face prepend)
2304                             ;; ("[%\\][[:alpha:]]" . font-lock-constant-face)
2305                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
2306 #+END_SRC
2307
2308 ** C & C++
2309 C/C++ ide tools
2310 1. completion (file name, function name, variable name)
2311 2. template yasnippet (keywords, if, function)
2312 3. tags jump
2313 *** c/c++ style
2314 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2315   ;; (setq c-default-style "stroustrup"
2316   ;;       c-basic-offset 4)
2317
2318   ;; "C-M-j" is my global binding for avy goto line below
2319   ;; disable it in c mode
2320   (mapcar #'(lambda (map)
2321              (define-key map (kbd "C-M-j") nil))
2322           (list c-mode-map
2323                 c++-mode-map
2324                 objc-mode-map))
2325
2326   ;; objective c
2327   (add-to-list 'auto-mode-alist '("\\.mm\\'" . objc-mode))
2328
2329   (setq c-hungry-delete-key t)
2330
2331
2332   ;; Looks `c-hanging-braces-alist' doesn't work as expected when  `electric-pair-mode' is enabled.
2333   (electric-pair-mode 1)
2334
2335   (defconst sd/c-style
2336     '("stroustrup"
2337       (c-tab-always-indent . t)
2338       (c-basic-offset . 4)
2339       (c-hanging-braces-alist . ((substatement-open before)
2340                                  (statement-block-intro before)))
2341       (c-hanging-colons-alist . ())
2342       (c-echo-syntactic-information-p . nil)
2343       (c-hanging-semi&comma-criteria . ()))
2344     "My C programming style")
2345
2346   (c-add-style "sd-c-style" sd/c-style)
2347
2348   (setq c-default-style "sd-c-style")
2349
2350   (add-hook 'c-mode-hook '(lambda ()
2351                             (c-toggle-auto-newline 1)
2352                             (c-set-style "sd-c-style")))
2353
2354   ;; (advice-add 'c-electric-brace :after (lambda (arg) "Add new line after insert {}" (newline-and-indent)))
2355 #+END_SRC
2356
2357 *** irony
2358 **** install irony server
2359 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
2360 #+BEGIN_SRC sh
2361   brew install llvm --with-clang
2362 #+END_SRC
2363
2364 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
2365 #+BEGIN_SRC emacs-lisp :tangle no :results silent
2366   (irony-install-server)
2367 #+END_SRC
2368
2369 #+BEGIN_SRC sh
2370   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/4.0.1/lib/libclang.dylib \
2371         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/4.0.1/include \
2372         -DCMAKE_INSTALL_PREFIX\=/Users/peng/.emacs.d/irony/ \
2373         /Users/peng/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
2374 #+END_SRC
2375
2376 **** irony config
2377 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
2378 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2379   (use-package irony
2380     :ensure t
2381     :config
2382     (add-hook 'c++-mode-hook 'irony-mode)
2383     (add-hook 'c-mode-hook 'irony-mode)
2384     (add-hook 'objc-mode-hook 'irony-mode))
2385
2386   ;; replace the `completion-at-point' and `complete-symbol' bindings in
2387   ;; irony-mode's buffers by irony-mode's function
2388
2389   (defun my-irony-mode-hook ()
2390     (define-key irony-mode-map [remap completion-at-point]
2391       'irony-completion-at-point-async)
2392     (define-key irony-mode-map [remap complete-symbol]
2393       'irony-completion-at-point-async))
2394
2395   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
2396   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
2397
2398   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
2399
2400   ;; add C++ completions, because by default c++ file can not complete
2401   ;; c++ std functions, another method is create .dir-local.el file, for p
2402   ;; for project see irony
2403   (defun sd/c++-mode-local-vars ()
2404     (setq irony--compile-options
2405         '("-std=c++11"
2406           "-stdlib=libc++"
2407           "-I/usr/include/c++/4.2.1")))
2408 #+END_SRC
2409
2410 irony-company
2411 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2412   (use-package company-irony
2413     :ensure t)
2414
2415   (use-package flycheck-irony
2416     :ensure t)
2417
2418   (use-package company-c-headers
2419     :ensure t
2420     :config
2421     (add-to-list 'company-c-headers-path-system "/usr/include/c++/4.2.1/")
2422     (add-to-list 'company-c-headers-path-system "/usr/local/include/"))
2423
2424   ;; (with-eval-after-load 'company
2425   ;;   (add-to-list 'company-backends 'company-irony)
2426   ;;   (add-to-list 'company-backends 'company-c-headers))
2427
2428   (with-eval-after-load 'company
2429     (push  '(company-irony :with company-yasnippet) company-backends)
2430     (push  '(company-c-headers :with company-yasnippet) company-backends))
2431
2432   (with-eval-after-load 'flycheck
2433     (add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
2434 #+END_SRC
2435
2436 *** flycheck
2437 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2438   (use-package flycheck
2439     :ensure t)
2440 #+END_SRC
2441
2442 *** gtags
2443 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2444   (use-package ggtags
2445     :ensure t
2446     :config
2447     (define-key ggtags-mode-map (kbd "M-g d") 'ggtags-find-definition)
2448     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2449     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2450     (define-key ggtags-mode-map (kbd "C-c g s") 'ggtags-find-other-symbol)
2451     (define-key ggtags-mode-map (kbd "C-c g h") 'ggtags-view-tag-history)
2452     (define-key ggtags-mode-map (kbd "C-c g r") 'ggtags-find-reference)
2453     (define-key ggtags-mode-map (kbd "C-c g f") 'ggtags-find-file)
2454     (define-key ggtags-mode-map (kbd "C-c g c") 'ggtags-create-tags)
2455     (define-key ggtags-mode-map (kbd "C-c g u") 'ggtags-update-tags))
2456
2457   (add-hook 'c-mode-common-hook
2458             (lambda ()
2459               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
2460                 (ggtags-mode 1))))
2461
2462   (require 'cc-mode)
2463   (require 'semantic)
2464
2465   (global-semanticdb-minor-mode 1)
2466   (global-semantic-idle-scheduler-mode 1)
2467
2468   (semantic-mode 1)
2469 #+END_SRC
2470
2471 *** google C style
2472 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2473   ;; (use-package google-c-style
2474   ;;   :ensure t
2475   ;;   :config
2476   ;;   (add-hook 'c-mode-hook 'google-set-c-style)
2477   ;;   (add-hook 'c++-mode-hook 'google-set-c-style))
2478 #+END_SRC
2479
2480 *** Compile and Run the C file
2481 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2482   (defun my-cpp-hook ()
2483     (let* ((current-file-name)
2484            (out-file-name))
2485       (when buffer-file-name
2486         (setq current-file-name (shell-quote-argument buffer-file-name))
2487         (setq out-file-name (shell-quote-argument (concat (file-name-sans-extension buffer-file-name) ".out"))))
2488       (setq-local compilation-read-command t)
2489       (set (make-local-variable 'compile-command)
2490            (concat "g++ -Wall "
2491                    current-file-name
2492                    " -o "
2493                    out-file-name
2494                    " && "
2495                    out-file-name
2496                    ))
2497       (local-set-key (kbd "s-r") 'compile)))
2498
2499   (add-hook 'c-mode-hook 'my-cpp-hook)
2500   (add-hook 'c++-mode-hook 'my-cpp-hook)
2501 #+END_SRC
2502
2503 ** Lua
2504 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2505   (use-package lua-mode
2506     :ensure t)
2507 #+END_SRC
2508
2509 ** Scheme
2510 Install =guile=, =guile= is an implementation of =Scheme= programming language.
2511 #+BEGIN_SRC sh
2512   brew install guile
2513 #+END_SRC
2514
2515 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2516   (setq geiser-scheme-implementation 'guile)
2517 #+END_SRC
2518
2519 #+BEGIN_SRC scheme
2520   (define a "3")
2521   a
2522 #+END_SRC
2523
2524 #+RESULTS:
2525 : 3
2526
2527 ** Racket
2528 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2529   (use-package racket-mode
2530     :ensure t
2531     :config
2532     (define-key racket-mode-map (kbd "s-r") 'racket-run)
2533     (add-to-list 'racket-mode-hook (lambda () (lispy-mode 1))))
2534
2535   ;; set racket path
2536   (setenv "PATH" (concat (getenv "PATH")
2537                          ":" "/Applications/Racket v6.10.1/bin"))
2538   (setenv "MANPATH" (concat (getenv "MANPATH")
2539                             ":" "/Applications/Racket v6.10.1/man"))
2540   (setq exec-path (append exec-path '("/Applications/Racket v6.10.1/bin")))
2541
2542   (add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
2543 #+END_SRC
2544
2545 * Compile
2546 Set the environments vairables in compilation mode
2547 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2548   (use-package compile
2549     :commands compile
2550     :config
2551     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
2552     (setq compilation-auto-jump-to-first-error t)
2553     (setq compilation-auto-jump-to-next t)
2554     (setq compilation-scroll-output 'first-error)
2555     ;; this will save all the modified buffers before compile
2556     (setq compilation-ask-about-save nil)
2557     (setq compilation-window-height (/ (window-total-height) 3)))
2558
2559   ;; super-r to compile
2560   (with-eval-after-load "compile"
2561     (define-key compilation-mode-map (kbd "C-o") nil)
2562     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
2563     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
2564     (define-key compilation-mode-map (kbd "q") (lambda () (interactive) (quit-window t)))
2565     (define-key compilation-mode-map (kbd "r") #'recompile))
2566
2567   ;; here note dynamic binding the value of vv, otherwise it will resport error when run the hook.
2568   ;; https://emacs.stackexchange.com/questions/10394/scope-in-lambda
2569   (dolist (vv '(
2570                 (cperl-mode-hook . "perl")
2571                 (lua-mode-hook . "lua")
2572                 (python-mode-hook . "python")
2573                 (shell-mode-hook . "sh")))
2574     (add-hook (car vv) `(lambda ()
2575                           (unless (or (file-exists-p "makefile")
2576                                       (file-exists-p "Makefile"))
2577                             (set (make-local-variable 'compile-command)
2578                                  (concat (cdr ',vv)
2579                                          " "
2580                                          (if buffer-file-name
2581                                              (shell-quote-argument buffer-file-name))))))))
2582
2583   (global-set-key (kbd "s-r") 'compile)
2584 #+END_SRC
2585
2586 * Auto-Insert
2587 ** Enable auto-insert mode
2588 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2589   (auto-insert-mode t)
2590   (setq auto-insert-query nil)
2591 #+END_SRC
2592
2593 ** C++ Auto Insert
2594 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2595   (eval-after-load 'autoinsert
2596     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
2597        '(
2598          "Short description:"
2599          "/*"
2600          "\n * " (file-name-nondirectory (buffer-file-name))
2601          "\n */" > \n \n
2602          "#include <iostream>" \n
2603          "//#include \""
2604          (file-name-sans-extension
2605           (file-name-nondirectory (buffer-file-name)))
2606          ".hpp\"" \n \n
2607          "using namespace std;" \n \n
2608          "int main (int argc, char *argv[])"
2609          "\n{" \n 
2610          > _ \n
2611          "return 0;"
2612          "\n}" > \n
2613          )))
2614
2615   (eval-after-load 'autoinsert
2616     '(define-auto-insert '("\\.c\\'" . "C skeleton")
2617        '(
2618          "Short description:"
2619          "/*\n"
2620          " * " (file-name-nondirectory (buffer-file-name)) "\n"
2621          " */" > \n \n
2622          "#include <stdio.h>" \n
2623          "//#include \""
2624          (file-name-sans-extension
2625           (file-name-nondirectory (buffer-file-name)))
2626          ".h\"" \n \n
2627          "int main (int argc, char *argv[])\n"
2628          "{" \n
2629          > _ \n
2630          "return 0;\n"
2631          "}" > \n
2632          )))
2633
2634   (eval-after-load 'autoinsert
2635     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
2636        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
2637          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
2638 #+END_SRC
2639
2640 ** Python template
2641 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2642   (eval-after-load 'autoinsert
2643     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
2644        '(
2645          "Empty"
2646          "#import os,sys" \n
2647          \n \n
2648          )))
2649 #+END_SRC
2650
2651 ** Elisp 
2652 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
2653 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
2654 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2655   (eval-after-load 'autoinsert
2656     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
2657        '(
2658          "Short description: "
2659          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
2660          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
2661          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
2662          "\n
2663   ;; Copyright (C) " (format-time-string "%Y") "  "
2664          (getenv "ORGANIZATION") | (progn user-full-name) "
2665
2666   ;; Author: " (user-full-name)
2667          '(if (search-backward "&" (line-beginning-position) t)
2668               (replace-match (capitalize (user-login-name)) t t))
2669          '(end-of-line 1) " <" (progn user-mail-address) ">
2670   ;; Keywords: "
2671          '(require 'finder)
2672          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2673          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2674                            finder-known-keywords)
2675                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2676                               finder-known-keywords
2677                               "\n"))
2678          ((let ((minibuffer-help-form v2))
2679             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2680           str ", ") & -2 "
2681
2682   \;; This program is free software; you can redistribute it and/or modify
2683   \;; it under the terms of the GNU General Public License as published by
2684   \;; the Free Software Foundation, either version 3 of the License, or
2685   \;; (at your option) any later version.
2686
2687   \;; This program is distributed in the hope that it will be useful,
2688   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2689   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2690   \;; GNU General Public License for more details.
2691
2692   \;; You should have received a copy of the GNU General Public License
2693   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2694
2695   \;;; Commentary:
2696
2697   \;; " _ "
2698
2699   \;;; Code:
2700
2701
2702   \(provide '"
2703          (file-name-base)
2704          ")
2705   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2706 #+END_SRC
2707
2708 ** Org file template
2709 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2710   ;; (eval-after-load 'autoinsert
2711   ;;   '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2712   ;;      '(
2713   ;;        "title: "
2714   ;;        "#+TITLE: " str (make-string 30 ?\s) > \n
2715   ;;        "#+AUTHOR: Peng Li\n"
2716   ;;        "#+EMAIL: seudut@gmail.com\n"
2717   ;;        "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2718   ;;        > \n
2719   ;;        > _)))
2720 #+END_SRC
2721
2722 * Markdown mode
2723 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2724   (use-package markdown-mode
2725     :ensure t
2726     :commands (markdown-mode gfm-mode)
2727     :mode (("README\\.md\\'" . gfm-mode)
2728            ("\\.md\\'" . markdown-mode)
2729            ("\\.markdown\\'" . markdown-mode))
2730     :init (setq markdown-command "multimarkdown"))
2731
2732   ;; (add-hook 'gfm-mode-hook (lambda ()
2733   ;;                            (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2734   ;;                            (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch)))
2735   ;; (with-eval-after-load "gfm-mode"
2736   ;;   (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2737   ;;   (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch))
2738 #+END_SRC
2739
2740 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2741   (use-package markdown-preview-eww
2742     :ensure t)
2743 #+END_SRC
2744
2745 * Gnus
2746 ** Gmail setting 
2747 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2748 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2749   (setq user-mail-address "seudut@gmail.com"
2750         user-full-name "Peng Li")
2751
2752   (setq gnus-select-method
2753         '(nnimap "gmail"
2754                  (nnimap-address "imap.gmail.com")
2755                  (nnimap-server-port "imaps")
2756                  (nnimap-stream ssl)))
2757
2758   (setq smtpmail-smtp-service 587
2759         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2760
2761   ;; Use gmail sending mail
2762   (setq message-send-mail-function 'smtpmail-send-it
2763         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2764         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2765         smtpmail-default-smtp-server "smtp.gmail.com"
2766         smtpmail-smtp-server "smtp.gmail.com"
2767         smtpmail-smtp-service 587
2768         starttls-use-gnutls t)
2769 #+END_SRC
2770
2771 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2772 and =<PASSWORD>= with the password
2773 #+BEGIN_EXAMPLE
2774   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2775   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2776 #+END_EXAMPLE
2777
2778 Then Run =M-x gnus=
2779
2780 ** Group buffer
2781 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2782   ;; (use-package gnus
2783   ;;   :init
2784   ;;   (setq gnus-permanently-visible-groups "\.*")
2785   ;;   :config
2786   ;;   (cond (window-system
2787   ;;          (setq custom-background-mode 'light)
2788   ;;          (defface my-group-face-1
2789   ;;            '((t (:foreground "Red" :bold t))) "First group face")
2790   ;;          (defface my-group-face-2
2791   ;;            '((t (:foreground "DarkSeaGreen4" :bold t)))
2792   ;;            "Second group face")
2793   ;;          (defface my-group-face-3
2794   ;;            '((t (:foreground "Green4" :bold t))) "Third group face")
2795   ;;          (defface my-group-face-4
2796   ;;            '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2797   ;;          (defface my-group-face-5
2798   ;;            '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2799   ;;   (setq gnus-group-highlight
2800   ;;         '(((> unread 200) . my-group-face-1)
2801   ;;           ((and (< level 3) (zerop unread)) . my-group-face-2)
2802   ;;           ((< level 3) . my-group-face-3)
2803   ;;           ((zerop unread) . my-group-face-4)
2804   ;;           (t . my-group-face-5))))
2805
2806
2807   ;; ;; key-
2808   ;; (add-hook 'gnus-group-mode-hook (lambda ()
2809   ;;                                   (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2810   ;;                                   (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2811   ;;                                   (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2812   ;;                                   (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2813 #+END_SRC
2814
2815 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2816   (setq gnus-fetch-old-headers 't)
2817
2818
2819
2820   (setq gnus-extract-address-components
2821         'mail-extract-address-components)
2822   ;; summary buffer 
2823   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2824   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2825                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2826                                       (604800 . "%a, %b %-d")
2827                                       (15778476 . "%b %-d")
2828                                       (t . "%Y-%m-%d")))
2829
2830   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2831   (setq gnus-unread-mark ?\.)
2832   (setq gnus-use-correct-string-widths t)
2833
2834   ;; thread
2835   (setq gnus-thread-hide-subtree t)
2836
2837   ;; (with-eval-after-load 'gnus-summary-mode
2838   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2839
2840   ;; (add-hook 'gnus-summary-mode-hook (lambda ()
2841   ;;                                     (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2842   ;(add-hook 'gnus-summary-mode-hook (apply-partially #'define-key gnus-summary-mode-map (kbd "C-o") nil))
2843
2844
2845 #+END_SRC
2846
2847 ** Windows layout
2848 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2849 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2850   (gnus-add-configuration
2851    '(summary
2852      (horizontal 1.0
2853                  (vertical 35
2854                            (group 1.0))
2855                  (vertical 1.0
2856                            (summary 1.0 poine)))))
2857
2858   (gnus-add-configuration
2859    '(article
2860      (horizontal 1.0
2861                  (vertical 35
2862                            (group 1.0))
2863                  (vertical 1.0
2864                            (summary 0.50 point)
2865                            (article 1.0)))))
2866
2867   (with-eval-after-load 'gnus-group-mode
2868     (gnus-group-select-group "INBOX"))
2869   ;; (add-hook 'gnus-group-mode-map (lambda ()
2870   ;;                               (gnus-group-select-group "INBOX")))
2871 #+END_SRC
2872
2873 * Mu4e
2874 Refer [[http://www.kirang.in/2014/11/13/emacs-as-email-client-with-offlineimap-and-mu4e-on-osx][emacs-as-email-client-with-offlineimap-and-mu4e-on-osx]]
2875
2876 ** OfflineImap - download all mails from IMAP into local directory, and keep in sync
2877 #+BEGIN_SRC sh :results output replace
2878   # offline-imap
2879   brew install offline-imap
2880
2881   cp /usr/local/etc/offlineimap.conf ~/.offlineimapr
2882
2883   #For the =offlineimap= config on mac, using =sslcacertfile= instead of =cert_fingerpring=. On Mac
2884   sslcacertfile = /usr/local/etc/openssl/cert.pem 
2885 #+END_SRC
2886
2887 #+BEGIN_SRC conf 
2888   [general]
2889   ui=TTYUI
2890   accounts = Gmail
2891   autorefresh = 5
2892
2893   [Account Gmail]
2894   localrepository = Gmail-Local
2895   remoterepository = Gmail-Remote
2896
2897   [Repository Gmail-Local]
2898   type = Maildir
2899   localfolders = ~/.Mail/seudut@gmail.com
2900
2901   [Repository Gmail-Remote]
2902   type = Gmail
2903   remotehost = imap.gmail.com
2904   remoteuser = seudut@gmail.com
2905   remotepass = xxxxxxxx
2906   realdelete = no
2907   ssl = yes
2908   #cert_fingerprint = <insert gmail server fingerprint here>
2909   sslcacertfile = /usr/local/etc/openssl/cert.pem
2910   maxconnections = 1
2911   folderfilter = lambda folder: folder not in ['[Gmail]/Trash',
2912                                                '[Gmail]/Spam',
2913                                                '[Gmail]/All Mail',
2914                                                ]
2915 #+END_SRC
2916
2917 Then, run =offlineimap= to sync the mail
2918
2919 ** Mu - fast search, view mails and extract attachments.
2920 #+BEGIN_SRC sh
2921   EMACS=/usr/local/bin/emacs brew install mu --with-emacs
2922 #+END_SRC
2923
2924 Then, run =mu index --maildir=~/.Mail=
2925
2926 ** Mu4e - Emacs frontend of Mu
2927 config from [[http://www.kirang.in/2014/11/13/emacs-as-email-client-with-offlineimap-and-mu4e-on-osx/][emacs-as-email-client-with-offlineimap-and-mu4e-on-osx]]
2928 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2929   (if (require 'mu4e nil 'noerror)
2930       (progn
2931         (setq mu4e-maildir "~/.Mail")
2932         (setq mu4e-drafts-folder "/[Gmail].Drafts")
2933         (setq mu4e-sent-folder   "/[Gmail].Sent Mail")
2934         ;; don't save message to Sent Messages, Gmail/IMAP takes care of this
2935         (setq mu4e-sent-messages-behavior 'delete)
2936         ;; allow for updating mail using 'U' in the main view:
2937         (setq mu4e-get-mail-command "offlineimap")
2938
2939         ;; shortcuts
2940         (setq mu4e-maildir-shortcuts
2941               '( ("/INBOX"               . ?i)
2942                  ("/[Gmail].Sent Mail"   . ?s)))
2943
2944         ;; something about ourselves
2945         (setq
2946          user-mail-address "seudut@gmail.com"
2947          user-full-name  "Peng Li"
2948          mu4e-compose-signature
2949          (concat
2950           "Thanks,\n"
2951           "Peng\n"))
2952
2953         ;; show images
2954         (setq mu4e-show-images t)
2955
2956         ;; use imagemagick, if available
2957         (when (fboundp 'imagemagick-register-types)
2958           (imagemagick-register-types))
2959
2960         ;; convert html emails properly
2961         ;; Possible options:
2962         ;;   - html2text -utf8 -width 72
2963         ;;   - textutil -stdin -format html -convert txt -stdout
2964         ;;   - html2markdown | grep -v '&nbsp_place_holder;' (Requires html2text pypi)
2965         ;;   - w3m -dump -cols 80 -T text/html
2966         ;;   - view in browser (provided below)
2967         (setq mu4e-html2text-command "textutil -stdin -format html -convert txt -stdout")
2968
2969         ;; spell check
2970         (add-hook 'mu4e-compose-mode-hook
2971                   (defun my-do-compose-stuff ()
2972                     "My settings for message composition."
2973                     (set-fill-column 72)
2974                     (flyspell-mode)))
2975
2976         ;; add option to view html message in a browser
2977         ;; `aV` in view to activate
2978         (add-to-list 'mu4e-view-actions
2979                      '("ViewInBrowser" . mu4e-action-view-in-browser) t)
2980
2981         ;; fetch mail every 10 mins
2982         (setq mu4e-update-interval 600)
2983
2984         ;; mu4e view
2985         (setq-default mu4e-headers-fields '((:flags . 6)
2986                                             (:from-or-to . 22)
2987                                             (:mailing-list . 20)
2988                                             (:thread-subject . 70)
2989                                             (:human-date . 16))))
2990     (message "seudut:mu4e not installed, it won't work."))
2991 #+END_SRC
2992
2993 ** Smtp - send mail
2994 - =gnutls=, depends on =gnutls=, first confirm this is installed, otherwise, =brew install gnutls=
2995 - =~/.authinfo=
2996 #+BEGIN_SRC fundamental 
2997   machine smtp.gmail.com login <gmail username> password <gmail password>
2998 #+END_SRC
2999 - OPTIONAL, encrypt the =~/.authinfo= file
3000 #+BEGIN_SRC sh :results output replace
3001   gpg --output ~/.authinfo.gpg --symmetric ~/.authinfo
3002 #+END_SRC
3003
3004 * Ediff
3005 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3006   (with-eval-after-load 'ediff
3007     (setq ediff-split-window-function 'split-window-horizontally)
3008     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
3009     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
3010     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
3011     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
3012 #+END_SRC
3013
3014 * Modes
3015 ** Yaml-mode
3016 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3017   (use-package yaml-mode
3018     :ensure t
3019     :init
3020     (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
3021 #+END_SRC
3022
3023 * Entertainment
3024 ** GnuGo
3025 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
3026 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3027   (use-package gnugo
3028     :ensure t
3029     :defer t
3030     :init
3031     (require 'gnugo-imgen)
3032     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
3033     (add-hook 'gnugo-start-game-hook '(lambda ()
3034                                         (gnugo-image-display-mode)
3035                                         (gnugo-grid-mode)))
3036     :config
3037     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
3038 #+END_SRC
3039
3040 ** Emms
3041 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
3042 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3043   (use-package emms
3044     :ensure t
3045     :init
3046     (setq emms-directory (concat sd-temp-directory "emms"))
3047     (setq emms-source-file-default-directory "~/Music/")
3048     :config
3049     (emms-standard)
3050     (emms-default-players)
3051     (define-emms-simple-player mplayer '(file url)
3052       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
3053                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
3054                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
3055                     ".m4a" ".flv" ".ogv" ".pls"))
3056       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
3057     (emms-history-load))
3058 #+END_SRC
3059
3060 * Dictionary
3061 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3062   (use-package bing-dict
3063     :ensure t
3064     :init
3065     (global-set-key (kbd "s-d") 'bing-dict-brief)
3066     :commands (bing-dict-brief))
3067 #+END_SRC
3068
3069 * Key Bindings
3070 Here are some global key bindings for basic editting
3071 ** Global key bingding
3072 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3073   (global-set-key (kbd "C-h") 'delete-backward-char)
3074   (global-set-key (kbd "s-m") 'man)
3075 #+END_SRC
3076
3077 Refer [[https://github.com/fnwiya/dotfiles/blob/c9ca79f1b22c919d9f4c3a0f944ba8281255a594/setup/.emacs.d/loader-init/_90-kill-region-or-backward-kill-word.el][kill-region-or-backward-kill-word]]
3078
3079 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3080   (require 'utilities)
3081   (global-set-key (kbd "C-w") 'sd/kill-region-or-backward-kill-word)
3082 #+END_SRC
3083
3084
3085 ** Esc in minibuffer
3086 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
3087 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3088   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
3089   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
3090   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
3091   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
3092   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
3093   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
3094   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
3095   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
3096   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
3097
3098   ;; Also map s-h same as C-g
3099   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
3100 #+END_SRC
3101
3102 ** Project operations - =super=
3103 *** Projectile
3104 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3105   (use-package projectile
3106     :ensure t
3107     :init
3108     (setq projectile-enable-caching t)
3109     (setq projectile-switch-project-action (lambda ()
3110                                              (projectile-dired)
3111                                              (sd/project-switch-action)))
3112     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
3113     :config
3114     (add-to-list 'projectile-globally-ignored-files "GTAGS")
3115     (projectile-global-mode t))
3116
3117   ;; change default-directory of scratch buffer to projectile-project-root 
3118   (defun sd/project-switch-action ()
3119     "Change default-directory of scratch buffer to current projectile-project-root directory"
3120     (interactive)
3121     (dolist (buffer (buffer-list))
3122       (if (string-match (concat "scratch.*" (projectile-project-name))
3123                         (buffer-name buffer))
3124           (let ((root (projectile-project-root)))
3125             (with-current-buffer buffer
3126               (cd root))))))
3127
3128
3129
3130   ;; https://emacs.stackexchange.com/questions/16497/how-to-exclude-files-from-projectile
3131   (setq projectile-enable-caching t)
3132   (if (executable-find "rg")
3133       (progn
3134         (defconst modi/rg-arguments
3135           `("--line-number"               ; line numbers
3136             "--smart-case"
3137             "--follow"                    ; follow symlinks
3138             "--mmap")                     ; apply memory map optimization when possible
3139           "Default rg arguments used in the functions in `projectile' package.")
3140
3141         (defun modi/advice-projectile-use-rg ()
3142           "Always use `rg' for getting a list of all files in the project."
3143           (mapconcat 'identity
3144                      (append '("\\rg")    ; used unaliased version of `rg': \rg
3145                              modi/rg-arguments
3146                              '("--null"   ; output null separated results,
3147                                "--files")) ; get file names matching the regex '' (all files)
3148                      " "))
3149
3150         (advice-add 'projectile-get-ext-command :override #'modi/advice-projectile-use-rg))
3151     (message "rg is not found"))
3152 #+END_SRC
3153
3154 *** project config =super= keybindings
3155 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3156   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
3157   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
3158   ;; (global-set-key (kbd "s-k") 'ido-find-file)
3159   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
3160   ;; s-l  -->  goto-line
3161   ;; (global-set-key (kbd "s-/") 'swiper)
3162   ;; s-;  -->
3163   ;; s-'  -->  'next-multiframe-window
3164   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
3165
3166   (global-set-key (kbd "s-f") 'projectile-find-file)
3167   ;; (global-set-key (kbd "s-`") 'mode-line-other-buffer)
3168
3169   ;; (global-set-key (kbd "s-n") 'persp-next)
3170   ;; (global-set-key (kbd "s-p") 'persp-prev)
3171   ;; (global-set-key (kbd "s-;") 'persp-switch-last)
3172
3173   (global-set-key (kbd "s-=") 'text-scale-increase)
3174   (global-set-key (kbd "s--") 'text-scale-decrease)
3175
3176   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
3177 #+END_SRC
3178
3179 ** Windown & Buffer - =C-o=
3180 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
3181 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
3182 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3183   (winner-mode 1)
3184
3185   (require 'utilities)
3186   (defhydra sd/hydra-window (:color red :columns nil)
3187     "C-o"
3188     ;; windows switch
3189     ("h" windmove-left nil :exit t)
3190     ("j" windmove-down nil :exit t)
3191     ("k" windmove-up nil :exit t)
3192     ("l" windmove-right nil :exit t)
3193     ("C-o" other-window nil :exit t)
3194     ;; window resize
3195     ("H" hydra-move-splitter-left nil)
3196     ("J" hydra-move-splitter-down nil)
3197     ("K" hydra-move-splitter-up nil)
3198     ("L" hydra-move-splitter-right nil)
3199     ;; windows split
3200     ("v" (lambda ()
3201            (interactive)
3202            (split-window-right)
3203            (windmove-right))
3204      nil :exit t)
3205     ("x" (lambda ()
3206            (interactive)
3207            (split-window-below)
3208            (windmove-down))
3209      nil :exit t)
3210     ;; buffer / windows switch
3211     ("o" sd/toggle-max-windows nil :exit t)
3212     ("C-k" sd/delete-current-window nil :exit t)
3213     ("C-d" (lambda ()
3214              (interactive)
3215              (kill-buffer)
3216              (sd/delete-current-window))
3217      nil :exit t)
3218
3219     ;; ace-window
3220     ;; ("'" other-window "other" :exit t)
3221     ;; ("a" ace-window "ace")
3222     ("s" ace-swap-window nil)
3223     ("D" ace-delete-window nil :exit t)
3224     ;; ("i" ace-maximize-window "ace-one" :exit t)
3225     ;; Windows undo - redo
3226     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) nil)
3227     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) nil)
3228
3229     ;; ibuffer, dired, eshell, bookmarks
3230     ;; ("C-i" other-window nil :exit t)
3231     ("C-b" ido-switch-buffer nil :exit t)
3232     ("C-f" projectile-find-file nil :exit t)
3233     ("C-r" ivy-recentf nil :exit t)
3234     ;; ("C-p" persp-switch nil :exit t)
3235     ;; ("C-t" projectile-persp-switch-project nil :exit t)
3236
3237     ;; other special buffers
3238     ("d" sd/project-or-dired-jump nil :exit t)
3239     ("b" ibuffer nil :exit t)
3240     ("t" multi-term nil :exit t)
3241     ("e" sd/toggle-project-eshell nil :exit t)
3242     ("m" bookmark-jump-other-window nil :exit t)
3243     ("M" bookmark-set nil :exit t)
3244     ("g" magit-status nil :exit t)
3245     ;; ("p" paradox-list-packages nil :exit t)
3246
3247     ;; quit
3248     ("q" nil nil)
3249     ("<ESC>" nil nil)
3250     ("C-h" windmove-left nil :exit t)
3251     ("C-j" windmove-down nil :exit t)
3252     ("C-k" windmove-up nil :exit t)
3253     ("C-l" windmove-right nil :exit t)
3254     ("C-;" nil nil :exit t)
3255     ("n" nil nil :exit t)
3256     ("[" nil nil :exit t)
3257     ("]" nil nil :exit t)
3258     ("f" nil nil))
3259
3260   (global-unset-key (kbd "C-o"))
3261   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
3262
3263   (defun sd/project-or-dired-jump ()
3264     "If under project, jump to the root directory, otherwise
3265   jump to dired of current file"
3266     (interactive)
3267     (if (projectile-project-p)
3268         (projectile-dired)
3269       (dired-jump)))
3270 #+END_SRC
3271
3272 Kill the help window and buffer when quit.
3273 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3274   (with-eval-after-load "help-mode"
3275     (define-key help-mode-map (kbd "q") (lambda ()
3276                                           (interactive)
3277                                           (quit-window t))))
3278
3279   (with-eval-after-load 'man
3280     (set-face-attribute 'Man-overstrike nil :inherit 'bold :foreground "orange red")
3281     (set-face-attribute 'Man-underline nil :inherit 'underline :foreground "forest green")
3282     (define-key Man-mode-map (kbd "q") (lambda ()
3283                                          (interactive)
3284                                          (Man-kill))))
3285
3286
3287   ;; (advice-add 'man :after (lambda (man-args) (other-window 1)))
3288   (advice-add 'man :after (apply-partially 'other-window 1))
3289
3290
3291   (require 'shell-command-output-mode)
3292
3293   (defun my/shell-command-after (command &optional output-buffer error-buffer)
3294     (let* ((buffer (get-buffer "*Shell Command Output*"))
3295            (window (get-buffer-window buffer)))
3296       (if buffer (with-current-buffer buffer
3297                    (shell-command-output-mode)))
3298       (if window
3299           (select-window window))))
3300
3301   (advice-add 'shell-command :after 'my/shell-command-after)
3302 #+END_SRC
3303
3304 ** Motion
3305 - =C-M-=
3306 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
3307 *** Command Arguments, numeric argumens
3308 =C-u 4= same as =C-4=, =M-4=
3309 *** Basic movement
3310 moving by line / word / 
3311 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
3312 =C-a=, =C-e=
3313 =M-m= (move first non-whitespace on this line) 
3314 =M-}=, =M-{=, Move forward end of paragraph
3315 =M-a=, =M-e=,  beginning / end of sentence
3316 =C-M-a=, =C-M-e=, move begining of defun
3317 =C-x ]=, =C-x [=, forward/backward one page
3318 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
3319 =M-<=, =M->=, beginning/end of buffer
3320 =M-r=, Repositiong point
3321
3322 *** Moving by S-expression / List
3323 *** Marks
3324 =C-<SPC>= set marks toggle the region
3325 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
3326 =C-x C-x= Exchanges the point and mark.
3327
3328 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
3329 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3330   (defun push-mark-no-activate ()
3331     "Pushes `point' to `mark-ring' and does not activate the region
3332      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
3333     (interactive)
3334     (push-mark (point) t nil)
3335     (message "Pushed mark to ring"))
3336
3337   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
3338
3339   (defun jump-to-mark ()
3340     "Jumps to the local mark, respecting the `mark-ring' order.
3341     This is the same as using \\[set-mark-command] with the prefix argument."
3342     (interactive)
3343     (set-mark-command 1))
3344
3345   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
3346
3347   (defun exchange-point-and-mark-no-activate ()
3348     "Identical to \\[exchange-point-and-mark] but will not activate the region."
3349     (interactive)
3350     (exchange-point-and-mark)
3351     (deactivate-mark nil))
3352
3353   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
3354 #+END_SRC
3355
3356 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
3357 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
3358 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
3359 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3360   (setq mark-ring-max 50)
3361
3362   (use-package helm
3363     :ensure t
3364     :init
3365     (global-set-key (kbd "M-`") #'helm-mark-ring))
3366
3367   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
3368 #+END_SRC
3369
3370 =M-h= marks the next paragraph
3371 =C-x h= marks the whole buffer
3372 =C-M-h= marks the next defun
3373 =C-x C-p= marks the next page
3374 *** Registers
3375 Registers can save text, position, rectangles, file and configuration and other things.
3376 Here for movement, we can use register to save/jump position
3377 =C-x r SPC= store point in register
3378 =C-x r j= jump to register
3379 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3380   (use-package list-register
3381     :ensure t)
3382 #+END_SRC
3383
3384 *** Bookmarks
3385 As I would like use bookmakr for different buffer/files. to help to swith
3386 different buffer/file quickly. this setting is in Windows/buffer node
3387 =C-x r m= set a bookmarks
3388 =C-x r l= list bookmarks
3389 =C-x r b= jump to bookmarks
3390
3391 *** Search
3392 Search, replace and hightlight will in later paragraph
3393 *** =Avy= for easy motion
3394 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3395   (use-package avy
3396     :ensure t
3397     :config
3398     (avy-setup-default))
3399
3400   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
3401   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
3402   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
3403   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
3404
3405   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
3406   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
3407
3408   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3409   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
3410   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
3411
3412   ;; ;; will delete above 
3413   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
3414   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
3415   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
3416   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
3417   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3418   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
3419   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
3420 #+END_SRC
3421
3422 *** =Imenu= goto tag
3423 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3424   (global-set-key (kbd "M-i") #'counsel-imenu)
3425   ;; (global-set-key (kbd "M-i") #'imenu)
3426
3427   ;; define M-[ as C-M-a
3428   ;; http://ergoemacs.org/emacs/emacs_key-translation-map.html
3429   (define-key key-translation-map (kbd "M-[") (kbd "C-M-a"))
3430   (define-key key-translation-map (kbd "M-]") (kbd "C-M-e"))
3431 #+END_SRC
3432
3433 *** Go-to line
3434 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3435   (global-set-key (kbd "M-l") 'goto-line)
3436 #+END_SRC
3437
3438 ** Edit
3439 *** basic editting
3440 - cut, yank, =C-w=, =C-y=
3441 - save, revert
3442 - undo, redo - undo-tree
3443 - select, expand-region
3444 - spell check, flyspell
3445
3446 *** Kill ring
3447 =helm-show-kill-ring=
3448 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3449   (setq kill-ring-max 100)                ; default is 60p
3450
3451   (use-package helm
3452     :ensure t
3453     :init
3454     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
3455 #+END_SRC
3456
3457 *** undo-tree
3458 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3459   (use-package undo-tree
3460     :ensure t
3461     :config
3462     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
3463     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
3464     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
3465     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
3466     (global-undo-tree-mode 1))
3467
3468   (global-set-key (kbd "s-u") 'undo-tree-visualize)
3469 #+END_SRC
3470
3471 *** flyspell
3472 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
3473 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3474   (setenv "DICPATH" "/usr/local/share/hunspell")
3475
3476   (when (executable-find "hunspell")
3477     (setq-default ispell-program-name "hunspell")
3478     (setq ispell-really-hunspell t))
3479
3480   ;; (defun text-mode-hook-setup ()
3481   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
3482   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
3483   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
3484   ;; (add-hook 'text-mode-hook 'flyspell-mode)
3485
3486   ;; enable flyspell check on comments and strings in progmamming modes
3487   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
3488
3489   ;; I don't use the default mappings
3490   (with-eval-after-load 'flyspell
3491     (define-key flyspell-mode-map (kbd "C-;") nil)
3492     (define-key flyspell-mode-map (kbd "C-,") nil)
3493     (define-key flyspell-mode-map (kbd "C-.") nil))
3494 #+END_SRC
3495
3496 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]]
3497 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3498   ;; NO spell check for embedded snippets
3499   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
3500     (let ((rlt ad-return-value)
3501           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
3502           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
3503           old-flag
3504           b e)
3505       (when ad-return-value
3506         (save-excursion
3507           (setq old-flag case-fold-search)
3508           (setq case-fold-search t)
3509           (setq b (re-search-backward begin-regexp nil t))
3510           (if b (setq e (re-search-forward end-regexp nil t)))
3511           (setq case-fold-search old-flag))
3512         (if (and b e (< (point) e)) (setq rlt nil)))
3513       (setq ad-return-value rlt)))
3514 #+END_SRC
3515
3516 ** Search & Replace / hightlight =M-s=
3517 *** isearch
3518 =C-s=, =C-r=, 
3519 =C-w= add word at point to search string, 
3520 =M-%= query replace
3521 =C-M-y= add character at point to search string
3522 =M-s C-e= add reset of line at point
3523 =C-y= yank from clipboard to search string
3524 =M-n=, =M-p=, history
3525 =C-M-i= complete search string
3526 set the isearch history size, the default is only =16=
3527 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3528   (setq history-length 5000)
3529   (setq regexp-search-ring-max 1000)
3530   (setq search-ring-max 1000)
3531
3532   ;; when search a word or a symbol , also add the word into regexp-search-ring
3533   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
3534     "Add search-ring to regexp-search-ring"
3535     (unless regexp
3536       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
3537 #+END_SRC
3538
3539 *** =M-s= prefix
3540 use the prefix =M-s= for searching in buffers
3541 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3542   (defun sd/make-keymap (key bindings)
3543     (setq keymap (make-sparse-keymap))
3544     (dolist (binding bindings)
3545       (define-key keymap (car binding) (cdr binding)))
3546     (global-set-key key keymap))
3547
3548   ;; (sd/make-keymap "\M-s"
3549   ;;                 '(("w" . save-buffer)
3550   ;;                   ;; ("\M-w" . save-buffer)
3551   ;;                   ("e" . revert-buffer)
3552   ;;                   ("s" . isearch-forward-regexp)
3553   ;;                   ("\M-s" . isearch-forward-regexp)
3554   ;;                   ("r" . isearch-backward-regexp)
3555   ;;                   ("." . isearch-forward-symbol-at-point)
3556   ;;                   ("o" . occur)
3557   ;;                   ;; ("h" . highlight-symbol-at-point)
3558   ;;                   ("h" . highlight-symbol)
3559   ;;                   ("m" . highlight-regexp)
3560   ;;                   ("l" . highlight-lines-matching-regexp)
3561   ;;                   ("M" . unhighlight-regexp)
3562   ;;                   ("f" . keyboard-quit)
3563   ;;                   ("q" . keyboard-quit)))
3564 #+END_SRC
3565
3566 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3567   (use-package highlight-symbol
3568     :ensure t)
3569
3570   (defhydra sd/search-replace (:color red :columns nil)
3571     "Search"
3572     ("w" save-buffer "save" :exit t)
3573     ("e" revert-buffer "revert" :exit t)
3574     ("u" undo-tree-visualize "undo" :exit t)
3575     ("s" isearch-forward-regexp "s-search" :exit t)
3576     ("M-s" isearch-forward-regexp "s-search" :exit t)
3577     ("r" isearch-backward-regexp "r-search" :exit t)
3578     ("." isearch-forward-symbol-at-point "search point" :exit t)
3579     ("/" swiper "swiper" :exit t)
3580     ("o" occur "occur" :exit t)
3581     ("h" highlight-symbol "higlight" :exit t)
3582     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
3583     ("m" highlight-regexp "higlight" :exit t)
3584     ("M" unhighlight-regexp "unhiglight" :exit t)
3585     ("q" nil "quit")
3586     ("f" nil))
3587
3588   (global-unset-key (kbd "M-s"))
3589   (global-set-key (kbd "M-s") 'sd/search-replace/body)
3590
3591
3592   ;; search and replace and highlight
3593   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
3594   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
3595   (global-set-key (kbd "s-[") 'highlight-symbol-next)
3596   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
3597   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
3598 #+END_SRC
3599
3600 *** Occur
3601 Occur search key bindings
3602 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3603   (defun sd/occur-keys ()
3604     "My key bindings in occur-mode"
3605     (interactive)
3606     (switch-to-buffer-other-window "*Occur*")
3607     (define-key occur-mode-map (kbd "C-o") nil)
3608     (define-key occur-mode-map (kbd "C-n") (lambda ()
3609                                              (interactive)
3610                                              (occur-next)
3611                                              (occur-mode-goto-occurrence-other-window)
3612                                              (recenter)
3613                                              (other-window 1)))
3614     (define-key occur-mode-map (kbd "C-p") (lambda ()
3615                                              (interactive)
3616                                              (occur-prev)
3617                                              (occur-mode-goto-occurrence-other-window)
3618                                              (recenter)
3619                                              (other-window 1))))
3620
3621   (add-hook 'occur-hook #'sd/occur-keys)
3622
3623   (use-package color-moccur
3624     :ensure t
3625     :commands (isearch-moccur isearch-all)
3626     :init
3627     (setq isearch-lazy-highlight t)
3628     :config
3629     (use-package moccur-edit))
3630 #+END_SRC
3631
3632
3633 ** Expand region map
3634 *** Install =expand-region=
3635 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3636   (use-package expand-region
3637     :ensure t
3638     :config
3639     ;; (global-set-key (kbd "C-=") 'er/expand-region)
3640     )
3641 #+END_SRC
3642
3643 *** Add a =hydra= map for =expand-region= operations
3644 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3645   (defun sd/mark-line ()
3646     "Mark current line without whitespace beginning"
3647     (interactive)
3648     (back-to-indentation)
3649     (set-mark (line-end-position)))
3650
3651   (defhydra sd/expand-selected (:color red :columns nil
3652                                        :post (deactivate-mark)
3653                                        )
3654     "Selected"
3655     ;; select
3656     ;; ("e"  er/expand-region "+")
3657     ("SPC" er/expand-region "+")
3658     ;; ("c"  er/contract-region "-")
3659     ("S-SPC" er/contract-region "-")
3660     ("r" (lambda ()
3661            (interactive)
3662            (er/contract-region 0))
3663      "reset")
3664
3665     ("i'" er/mark-inside-quotes "in")
3666     ("i\"" er/mark-inside-quotes nil)
3667     ("o'" er/mark-outside-quotes "out")
3668     ("o\"" er/mark-outside-quotes nil)
3669
3670     ("i{" er/mark-inside-pairs nil)
3671     ("i(" er/mark-inside-pairs nil)
3672     ("o{" er/mark-inside-pairs nil)
3673     ("o(" er/mark-inside-pairs nil)
3674
3675     ("p" er/mark-paragraph "paragraph")
3676
3677     ("l" sd/mark-line "line")
3678     ("u" er/mark-url "url")
3679     ("f" er/mark-defun "fun")
3680     ("n" er/mark-next-accessor "next")
3681
3682     ("x" exchange-point-and-mark "exchange")
3683
3684     ;; Search
3685     ;; higlight
3686
3687     ;; exit
3688     ("d" kill-region "delete" :exit t)
3689
3690     ("y" kill-ring-save "yank" :exit t)
3691     ("M-SPC" nil "quit" :exit t)
3692     ;; ("C-SPC" "quit" :exit t)
3693     ("q" deactivate-mark "quit" :exit t))
3694
3695   (global-set-key (kbd "M-SPC") (lambda ()
3696                                   (interactive)
3697                                   (set-mark-command nil)
3698                                   ;; (er/expand-region 1)
3699                                   (er/mark-word)
3700                                   (sd/expand-selected/body)))
3701 #+END_SRC
3702
3703 *** TODO make expand-region hydra work with lispy selected
3704
3705 * Developing
3706 ** perspeen
3707 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3708   ;; (use-package perspeen
3709   ;;   :ensure t
3710   ;;   :init
3711   ;;   (setq perspeen-use-tab nil)
3712   ;;   :config
3713   ;;   (perspeen-mode))
3714
3715   (el-get-bundle seudut/perspeen
3716     :features perspeen
3717     (setq perspeen-use-tab nil)
3718     (perspeen-mode))
3719
3720   ;; super-i to switch to ith workspace
3721
3722   (defmacro sd/define-keys (map key func &rest args)
3723     "A macro to define multi keys "
3724     `(define-key ,map ,key (lambda () (interactive) (,func ,@args))))
3725
3726
3727   (with-eval-after-load "perspeen"
3728     (dotimes (ii 9)
3729       (sd/define-keys perspeen-mode-map (kbd (concat "s-" (number-to-string (+ ii 1))))
3730                       perspeen-goto-ws (+ ii 1)))
3731     (define-key perspeen-mode-map (kbd "s-c") 'perspeen-create-ws)
3732     (define-key perspeen-mode-map (kbd "s-n") 'perspeen-next-ws)
3733     (define-key perspeen-mode-map (kbd "s-p") 'perspeen-previous-ws)
3734     (define-key perspeen-mode-map (kbd "s-'") 'perspeen-last-ws)
3735     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab)
3736     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab))
3737 #+END_SRC
3738 * Evil Mode
3739 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3740   (org-babel-load-file "~/.emacs.d/emacs-evil.org")
3741 #+END_SRC
3742 * Note
3743 ** Check if emacs is in terminal of graphic mode
3744 Use =display-graphic-p= instead of =window-system=
3745 [[info:elisp#Window%20Systems][Window Systems]]
3746 ** =Interactive= 
3747 ** List operation
3748 *** add a element to list
3749 - ~add-to-list~ functions, append
3750 - ~push~ macro
3751 - ~(setcdr (last aa) (list element))~
3752 blog with modify list
3753
3754 draw one line top of the windows
3755 * test
3756 This is a test.
3757 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3758   ;; test local mode line
3759   ;; (add-to-list 'load-path "~/.emacs.d/elisp")
3760   ;; (require 'my-mode-line)
3761 #+END_SRC