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