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