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