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