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