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