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