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