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