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