eamcs - remove used 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   ;; (global-set-key (kbd "C-h i") 'sd/info-mode)
1432
1433   ;; open Info buffer in other window instead of current window
1434   (defadvice info (before my-info (&optional file buf) activate)
1435     (sd/info-mode))
1436
1437   (defadvice Info-exit (after my-info-exit activate)
1438     (sd/delete-current-window))
1439 #+END_SRC
1440
1441 ** Demo It
1442 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1443   ;; (el-get-bundle howardabrams/demo-it)
1444
1445   (use-package org-tree-slide
1446     :ensure t)
1447
1448   ;; (use-package yasnippet
1449   ;;   :ensure t)
1450 #+END_SRC
1451
1452 ** Presentation
1453 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1454   (use-package org-tree-slide
1455     :ensure
1456     :config
1457     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1458     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1459     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1460     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1461 #+END_SRC
1462
1463 ** pdf-tools
1464 #+BEGIN_SRC sh
1465   brew install poppler
1466 #+END_SRC
1467
1468 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1469   (use-package pdf-tools
1470     :ensure t
1471     :init
1472     ;; run to complete the installation
1473     (pdf-tools-install)
1474     :config
1475     (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1476     (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1477
1478   (defun sd/pdf-outline-map ()
1479     "My keybindings in pdf-outline-map"
1480     (interactive)
1481     (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1482     (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1483     (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1484     (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1485 #+END_SRC
1486
1487 ** help-mode
1488 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1489   (defun sd/help-mode-hook ()
1490     "Mapping for help mode"
1491     (define-key help-mode-map "j" 'next-line)
1492     (define-key help-mode-map "k" 'previous-line)
1493     (define-key help-mode-map "h" 'forward-char)
1494     (define-key help-mode-map "l" 'forward-char)
1495     (define-key help-mode-map "H" 'describe-mode)
1496     (define-key help-mode-map "v" 'recenter-top-bottom)
1497     (define-key help-mode-map "i" 'forward-button)
1498     (define-key help-mode-map "I" 'backward-button)
1499     (define-key help-mode-map "o" 'ace-link-help))
1500
1501   (add-hook 'help-mode-hook 'sd/help-mode-hook)
1502 #+END_SRC
1503
1504 ** goto-last-change
1505 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1506   (use-package goto-last-change
1507     :ensure t)
1508 #+END_SRC
1509
1510 ** Ag
1511 install =ag=, =the-silver-searcher= by homebrew on mac
1512 #+BEGIN_SRC sh
1513 brew install the-silver-searcher
1514 #+END_SRC
1515
1516 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1517   (use-package ag
1518     :ensure t)
1519 #+END_SRC
1520
1521 ** Local Variable hooks
1522 [[https://www.emacswiki.org/emacs/LocalVariables][LocalVariables]], use =hack-local-variables-hook=, run a hook to set local variable in mode hook
1523 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1524   ;; make Emacs run a new "local variables hook" for each major mode
1525   (add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
1526
1527   (defun run-local-vars-mode-hook ()
1528     "Run a hook for the major-mode after the local variables have been processed."
1529     (run-hooks (intern (concat (symbol-name major-mode) "-local-vars-hook"))))
1530
1531   ;;   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
1532 #+END_SRC
1533
1534 ** Table
1535 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1536   (add-hook 'text-mode-hook 'table-recognize)
1537 #+END_SRC
1538
1539 ** url-download
1540 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
1541 as a http download client tool
1542 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1543   (defun sd/download-file (&optional url download-dir download-name)
1544     (interactive)
1545     (let ((url (or url
1546                    (read-string "Enter download URL: ")))
1547           (download-dir (read-directory-name "Save to (~/Downloads): " "~/Downloads" "~/Downloads" 'confirm' nil)))
1548       (let ((download-buffer (url-retrieve-synchronously url)))
1549         (save-excursion
1550           (set-buffer download-buffer)
1551           ;; we may have to trim the http response
1552           (goto-char (point-min))
1553           (re-search-forward "^$" nil 'move)
1554           (forward-char)
1555           (delete-region (point-min) (point))
1556           (write-file (concat (or download-dir
1557                                   "~/Downloads/")
1558                               (or download-name
1559                                   (car (last (split-string url "/" t))))))))))
1560 #+END_SRC
1561
1562 * Dired
1563 ** Dired bindings
1564 =C-o= is defined as a global key for window operation, here unset it in dired mode
1565 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1566   (defun sd/dired-key-map ()
1567     "My keybindings for dired"
1568     (interactive)
1569     ;; these two prefix are used globally
1570     (define-key dired-mode-map (kbd "C-o") nil)
1571     (define-key dired-mode-map (kbd "M-s") nil)
1572     ;; toggle hidden files
1573     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1574     ;; scroll 
1575     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1576     (define-key dired-mode-map (kbd "DEL") 'scroll-down-command)
1577     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1578     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1579     (define-key dired-mode-map (kbd "g") 'dired-goto-file)
1580     ;; (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1581     ;; jump to fil/dirs
1582     (define-key dired-mode-map (kbd "f") 'dired-isearch-filenames)
1583     ;; subdir
1584     ;; i dired-maybe-insert-subdir
1585     ;; o dired-find-file-other-window (switch to other window)
1586     ;; O dired-display-file
1587     (define-key dired-mode-map (kbd "G") 'ido-dired)
1588     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file)
1589     (define-key dired-mode-map (kbd "h") 'dired-summary)
1590     (define-key dired-mode-map (kbd "r") 'revert-buffer)
1591     (define-key dired-mode-map (kbd "l") 'dired-display-file)
1592     (define-key dired-mode-map [C-backspace] 'dired-up-directory)
1593     (define-key dired-mode-map (kbd "?") 'describe-mode)
1594     (define-key dired-mode-map (kbd "z") #'sd/dired-get-size)
1595     (define-key dired-mode-map (kbd "C-d") 'dired-kill-subdir)
1596     (define-key dired-mode-map (kbd "M-d") 'dired-kill-subdir)
1597     (define-key dired-mode-map (kbd "J") 'diredp-next-subdir)
1598     (define-key dired-mode-map (kbd "TAB") 'diredp-next-subdir)
1599     (define-key dired-mode-map (kbd "K") 'diredp-prev-subdir)
1600     (define-key dired-mode-map (kbd "O") 'dired-display-file)
1601     (define-key dired-mode-map (kbd "I") 'other-window)
1602     (define-key dired-mode-map (kbd "o") 'other-window)) 
1603
1604   (use-package dired
1605     :config
1606     (require 'dired-x)
1607     ;; also load dired+
1608     (use-package dired+
1609       :ensure t
1610       :init (setq diredp-hide-details-initially-flag nil))
1611     
1612     (setq dired-omit-mode t)
1613     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1614     (add-hook 'dired-mode-hook (lambda ()
1615                                  (sd/dired-key-map)
1616                                  (dired-omit-mode))))
1617
1618   (defadvice dired-summary (around sd/dired-summary activate)
1619     "Revisied dired summary."
1620     (interactive)
1621     (dired-why)
1622     (message
1623      "Δ: 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"))
1624
1625   (defun sd/dired-high-level-dir ()
1626     "Go to higher level directory"
1627     (interactive)
1628     (find-alternate-file ".."))
1629 #+END_SRC
1630
1631 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1632   (defun sd/dired-new-file ()
1633     "Create a new file in dired mode"
1634     (interactive)
1635     (call-interactively 'find-file))
1636
1637   ;; copied from abo-abo's config
1638   (defun sd/dired-get-size ()
1639     (interactive)
1640     (let ((files (dired-get-marked-files)))
1641       (with-temp-buffer
1642         (apply 'call-process "/usr/bin/du" nil t nil "-sch" files)
1643         (message
1644          "Size of all marked files: %s"
1645          (progn
1646            (re-search-backward "\\(^[ 0-9.,]+[A-Za-z]+\\).*total$")
1647            (match-string 1))))))
1648 #+END_SRC
1649
1650 ** disable ido when dired new file
1651 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
1652 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’]]
1653 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1654   (defun mk-anti-ido-advice (func &rest args)
1655     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1656     (interactive)
1657     (let ((read-file-name-function #'read-file-name-default))
1658       (if (called-interactively-p 'any)
1659           (call-interactively func)
1660         (apply func args))))
1661
1662   (defun mk-disable-ido (command)
1663     "Disable IDO when command COMMAND is called."
1664     (advice-add command :around #'mk-anti-ido-advice))
1665 #+END_SRC
1666
1667 Disalble =ido= when new a directory or file in =dired= mode
1668 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1669   ;; call the function which you want to disable ido
1670   (mk-disable-ido 'dired-create-directory)
1671   (mk-disable-ido 'sd/dired-new-file)
1672   (mk-disable-ido 'dired-goto-file)
1673 #+END_SRC
1674
1675 ** Dired open with
1676 =!= =dired-do-shell-command=
1677 =&= =dired-do-async-shell-command=
1678 here on Mac, just use "open" commands to pen =.pdf=,  =.html= and image files
1679 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1680   (setq dired-guess-shell-alist-user
1681         '(("\\.pdf\\'" "open" "okular")
1682           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
1683           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "open")
1684           ("\\.\\(?:xcf\\)\\'" "gimp")
1685           ("\\.csv\\'" "libreoffice")
1686           ("\\.tex\\'" "pdflatex" "latex")
1687           ("\\.\\(?:mp4\\|mkv\\|avi\\|rmvb\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'" "mplayer")
1688           ("\\.\\(?:mp3\\|flac\\)\\'" "rhythmbox")
1689           ("\\.html?\\'" "open")
1690           ("\\.dmg\\'" "open")
1691           ("\\.cue?\\'" "audacious")))
1692
1693
1694   (defun sd/dired-start-process (cmd &optional file-list)
1695     (interactive
1696      (let ((files (dired-get-marked-files
1697                    t current-prefix-arg)))
1698        (list
1699         (unless (eq system-type 'windows-nt)
1700           (dired-read-shell-command "& on %s: "
1701                                     current-prefix-arg files))
1702         files)))
1703     
1704     (if (eq system-type 'windows-nt)
1705         (dolist (file file-list)
1706           (w32-shell-execute "open" (expand-file-name file)))
1707       (let (list-switch)
1708         (start-process
1709          cmd nil shell-file-name
1710          shell-command-switch
1711          (format
1712           "nohup 1>/dev/null 2>/dev/null %s \"%s\""
1713           cmd
1714           ;; (if (and (> (length file-list) 1)
1715           ;;          (setq list-switch
1716           ;;                (cadr (assoc cmd ora-dired-filelist-cmd))))
1717           ;;     (format "%s %s" cmd list-switch)
1718           ;;   cmd)
1719           (mapconcat #'expand-file-name file-list "\" \""))))))
1720 #+END_SRC
1721
1722 ** dired-hacks
1723 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1724   (use-package dired-hacks-utils
1725     :ensure t
1726     :defer t)
1727 #+END_SRC
1728
1729 ** dired-narrow
1730 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1731   ;;narrow dired to match filter
1732   (use-package dired-narrow
1733     :ensure t
1734     :commands (dired-narrow)
1735     :bind (:map dired-mode-map
1736                 ("/" . dired-narrow)))
1737 #+END_SRC
1738
1739 * Ibuffer
1740 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1741   (global-set-key (kbd "s-b") 'ibuffer)
1742
1743   (with-eval-after-load 'ibuffer
1744     (define-key ibuffer-mode-map (kbd "C-o") nil)
1745     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
1746     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
1747     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
1748     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer)
1749     (define-key ibuffer-mode-map (kbd "h") 'sd/ibuffer-summary))
1750
1751   (defun sd/ibuffer-summary ()
1752     "Show summary of keybindings in ibuffer mode"
1753     (interactive)
1754     (message
1755      "Β: m|u - (un)mark, /-filter, //-remove filter, t, RET, g, k, S, D, Q; q to quit; h for help"))
1756 #+END_SRC
1757
1758 * Completion
1759 ** company mode and company-statistics
1760 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1761   (use-package company
1762     :ensure t
1763     :diminish company-mode
1764     :init (setq company-idle-delay 0.1)
1765     (setq company-selection-wrap-around t)
1766     :config
1767     (define-key company-active-map (kbd "M-n") nil)
1768     (define-key company-active-map (kbd "M-p") nil)
1769     (define-key company-active-map (kbd "C-n") #'company-select-next)
1770     (define-key company-active-map (kbd "C-p") #'company-select-previous)
1771      ;; should map both (kbd "TAB") and [tab],https://github.com/company-mode/company-mode/issues/75
1772     (define-key company-active-map (kbd "TAB") #'company-complete-selection)
1773     (define-key company-active-map [tab] #'company-complete-selection)
1774     (global-company-mode)
1775     (setq company-global-modes '(not org-mode)))
1776
1777   (use-package company-statistics
1778     :ensure t
1779     :config
1780     (company-statistics-mode))
1781 #+END_SRC
1782
1783 ** YASnippet
1784 *** yasnippet
1785 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1786   (use-package yasnippet
1787     :ensure t
1788     :defer t
1789     :init
1790     (add-hook 'prog-mode-hook #'yas-minor-mode)
1791     :config
1792     (yas-reload-all))
1793 #+END_SRC
1794
1795
1796 ** company and yasnippet
1797 Add yasnippet as the company candidates
1798 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1799   ;Add yasnippet support for all company backends
1800   ;https://github.com/syl20bnr/spacemacs/pull/179
1801   (defvar company-mode/enable-yas t
1802     "Enable yasnippet for all backends.")
1803
1804   (defun company-mode/backend-with-yas (backend)
1805     (if (or (not company-mode/enable-yas) (and (listp backend) (member 'company-yasnippet backend)))
1806         backend
1807       (append (if (consp backend) backend (list backend))
1808               '(:with company-yasnippet))))
1809
1810   (setq company-backends (mapcar #'company-mode/backend-with-yas company-backends))
1811 #+END_SRC
1812
1813 Refer, [[http://emacs.stackexchange.com/questions/7908/how-to-make-yasnippet-and-company-work-nicer][how-to-make-yasnippet-and-company-work-nicer]]
1814 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1815   (defun check-expansion ()
1816     (save-excursion
1817       (if (looking-at "\\_>") t
1818         (backward-char 1)
1819         (if (looking-at "\\.") t
1820           (backward-char 1)
1821           (if (looking-at "->") t nil)))))
1822
1823   (defun do-yas-expand ()
1824     (let ((yas/fallback-behavior 'return-nil))
1825       (yas/expand)))
1826
1827   (defun tab-indent-or-complete ()
1828     (interactive)
1829     (cond
1830      ((minibufferp)
1831       (minibuffer-complete))
1832      (t
1833       (indent-for-tab-command)
1834       (if (or (not yas/minor-mode)
1835               (null (do-yas-expand)))
1836           (if (check-expansion)
1837               (progn
1838                 (company-manual-begin)
1839                 (if (null company-candidates)
1840                     (progn
1841                       (company-abort)
1842                       (indent-for-tab-command)))))))))
1843
1844   (defun tab-complete-or-next-field ()
1845     (interactive)
1846     (if (or (not yas/minor-mode)
1847             (null (do-yas-expand)))
1848         (if company-candidates
1849             (company-complete-selection)
1850           (if (check-expansion)
1851               (progn
1852                 (company-manual-begin)
1853                 (if (null company-candidates)
1854                     (progn
1855                       (company-abort)
1856                       (yas-next-field))))
1857             (yas-next-field)))))
1858
1859   (defun expand-snippet-or-complete-selection ()
1860     (interactive)
1861     (if (or (not yas/minor-mode)
1862             (null (do-yas-expand))
1863             (company-abort))
1864         (company-complete-selection)))
1865
1866   (defun abort-company-or-yas ()
1867     (interactive)
1868     (if (null company-candidates)
1869         (yas-abort-snippet)
1870       (company-abort)))
1871
1872   '
1873   ;; (require 'company)
1874   ;; (require 'yasnippet)
1875
1876
1877   ;; (global-set-key [tab] 'tab-indent-or-complete)
1878   ;; (global-set-key (kbd "TAB") 'tab-indent-or-complete)
1879   ;; (global-set-key [(control return)] 'company-complete-common)
1880
1881   ;; (define-key company-active-map [tab] 'expand-snippet-or-complete-selection)
1882   ;; (define-key company-active-map (kbd "TAB") 'expand-snippet-or-complete-selection)
1883
1884   ;; (define-key yas-minor-mode-map [tab] nil)
1885   ;; (define-key yas-minor-mode-map (kbd "TAB") nil)
1886
1887   ;; (define-key yas-keymap [tab] 'tab-complete-or-next-field)
1888   ;; (define-key yas-keymap (kbd "TAB") 'tab-complete-or-next-field)
1889   ;; (define-key yas-keymap [(control tab)] 'yas-next-field)
1890   ;; (define-key yas-keymap (kbd "C-g") 'abort-company-or-yas)
1891 #+END_SRC
1892
1893 * Libs
1894 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1895   (use-package s
1896     :ensure t)
1897 #+END_SRC
1898
1899 * Programming Language
1900 ** Emacs Lisp
1901 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1902   (use-package color-identifiers-mode
1903     :ensure t
1904     :init
1905     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1906
1907     :diminish color-identifiers-mode)
1908
1909   (global-prettify-symbols-mode t)
1910 #+END_SRC
1911
1912 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1913 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1914 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1915   (use-package lispy
1916     :ensure t
1917     :init
1918     (eval-after-load "lispy"
1919       `(progn
1920          (define-key lispy-mode-map (kbd "M-o") nil)))
1921     :config
1922     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1923 #+END_SRC
1924
1925 ** Perl
1926 *** CPerl mode
1927 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1928 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1929   (defalias 'perl-mode 'cperl-mode)
1930
1931   ;; (setq cperl-hairy t)
1932   ;; Turns on most of the CPerlMode options
1933   (setq cperl-auto-newline t)
1934   (setq cperl-highlight-variables-indiscriminately t)
1935   ;(setq cperl-indent-level 4)
1936   ;(setq cperl-continued-statement-offset 4)
1937   (setq cperl-close-paren-offset -4)
1938   (setq cperl-indent-parents-as-block t)
1939   (setq cperl-tab-always-indent t)
1940   ;(setq cperl-brace-offset  0)
1941
1942   (add-hook 'cperl-mode-hook
1943             '(lambda ()
1944                (cperl-set-style "C++")))
1945
1946   (defalias 'perldoc 'cperl-perldoc)
1947 #+END_SRC
1948
1949 *** Perl template
1950 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1951 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1952   (eval-after-load 'autoinsert
1953     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1954        '(
1955          "Empty"
1956          "#!/usr/bin/perl -w" \n
1957          \n
1958          "use strict;" >  \n \n
1959          > _
1960          )))
1961 #+END_SRC
1962
1963 *** Perl Keywords
1964 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1965   (font-lock-add-keywords 'cperl-mode
1966                           '(("\\(say\\)" . cperl-nonoverridable-face)
1967                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1968                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1969                             ("\n" . font-lock-constant-face)
1970                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1971
1972     ;; (font-lock-add-keywords 'Man-mode
1973     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1974
1975 #+END_SRC
1976
1977 *** Run Perl
1978 Change the compile-command to set the default command run when call =compile=
1979 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1980 to call =compilation=  interactively.
1981 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1982   (defun my-perl-hook ()
1983     (progn
1984       (setq-local compilation-read-command nil)
1985       (set (make-local-variable 'compile-command)
1986            (concat "/usr/bin/perl "
1987                    (if buffer-file-name
1988                        (shell-quote-argument buffer-file-name))))
1989       (local-set-key (kbd "s-r")
1990                      (lambda ()
1991                        (interactive)
1992                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1993                        (call-interactively 'compile)))))
1994
1995   (add-hook 'cperl-mode-hook 'my-perl-hook)
1996 #+END_SRC
1997
1998 ** C & C++
1999 C/C++ ide tools
2000 1. completion (file name, function name, variable name)
2001 2. template yasnippet (keywords, if, function)
2002 3. tags jump
2003 *** c/c++ style
2004 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2005   (setq c-default-style "stroustrup"
2006         c-basic-offset 4)
2007
2008   ;; "C-M-j" is my global binding for avy goto line below
2009   ;; disable it in c mode
2010   (mapcar #'(lambda (map)
2011              (define-key map (kbd "C-M-j") nil))
2012           (list c-mode-map
2013                 c++-mode-map
2014                 objc-mode-map))
2015
2016   ;; objective c
2017   (add-to-list 'auto-mode-alist '("\\.mm\\'" . objc-mode))
2018 #+END_SRC
2019
2020 *** irony
2021 **** install irony server
2022 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
2023 #+BEGIN_SRC sh
2024   brew install llvm --with-clang
2025 #+END_SRC
2026
2027 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
2028 #+BEGIN_SRC emacs-lisp :tangle no :results silent
2029   (irony-install-server)
2030 #+END_SRC
2031
2032 #+BEGIN_SRC sh
2033   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/3.6.2/lib/libclang.dylib \
2034         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/3.6.2/include \
2035         -DCMAKE_INSTALL_PREFIX\=/Users/peli3/.emacs.d/irony/ \
2036         /Users/peli3/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
2037 #+END_SRC
2038
2039 **** irony config
2040 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
2041 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2042   (use-package irony
2043     :ensure t
2044     :config
2045     (add-hook 'c++-mode-hook 'irony-mode)
2046     (add-hook 'c-mode-hook 'irony-mode)
2047     (add-hook 'objc-mode-hook 'irony-mode))
2048
2049   ;; replace the `completion-at-point' and `complete-symbol' bindings in
2050   ;; irony-mode's buffers by irony-mode's function
2051
2052   (defun my-irony-mode-hook ()
2053     (define-key irony-mode-map [remap completion-at-point]
2054       'irony-completion-at-point-async)
2055     (define-key irony-mode-map [remap complete-symbol]
2056       'irony-completion-at-point-async))
2057
2058   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
2059   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
2060
2061   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
2062
2063   ;; add C++ completions, because by default c++ file can not complete
2064   ;; c++ std functions, another method is create .dir-local.el file, for p
2065   ;; for project see irony
2066   (defun sd/c++-mode-local-vars ()
2067     (setq irony--compile-options
2068         '("-std=c++11"
2069           "-stdlib=libc++"
2070           "-I/usr/include/c++/4.2.1")))
2071 #+END_SRC
2072
2073 irony-company
2074 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2075   (use-package company-irony
2076     :ensure t)
2077
2078   (use-package flycheck-irony
2079     :ensure t)
2080
2081   (use-package company-c-headers
2082     :ensure t
2083     :config
2084     (add-to-list 'company-c-headers-path-system "/usr/include/c++/4.2.1/"))
2085
2086   ;; (with-eval-after-load 'company
2087   ;;   (add-to-list 'company-backends 'company-irony)
2088   ;;   (add-to-list 'company-backends 'company-c-headers))
2089
2090   (with-eval-after-load 'company
2091     (push  '(company-irony :with company-yasnippet) company-backends)
2092     (push  '(company-c-headers :with company-yasnippet) company-backends))
2093
2094   (with-eval-after-load 'flycheck
2095     (add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
2096 #+END_SRC
2097
2098 *** flycheck
2099 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2100   (use-package flycheck
2101     :ensure t)
2102 #+END_SRC
2103
2104 *** gtags
2105 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2106   (use-package ggtags
2107     :ensure t
2108     :config
2109     (define-key ggtags-mode-map (kbd "M-g d") 'ggtags-find-definition)
2110     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2111     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2112     (define-key ggtags-mode-map (kbd "C-c g s") 'ggtags-find-other-symbol)
2113     (define-key ggtags-mode-map (kbd "C-c g h") 'ggtags-view-tag-history)
2114     (define-key ggtags-mode-map (kbd "C-c g r") 'ggtags-find-reference)
2115     (define-key ggtags-mode-map (kbd "C-c g f") 'ggtags-find-file)
2116     (define-key ggtags-mode-map (kbd "C-c g c") 'ggtags-create-tags)
2117     (define-key ggtags-mode-map (kbd "C-c g u") 'ggtags-update-tags))
2118
2119   (add-hook 'c-mode-common-hook
2120             (lambda ()
2121               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
2122                 (ggtags-mode 1))))
2123
2124   (require 'cc-mode)
2125   (require 'semantic)
2126
2127   (global-semanticdb-minor-mode 1)
2128   (global-semantic-idle-scheduler-mode 1)
2129
2130   (semantic-mode 1)
2131 #+END_SRC
2132
2133 *** google C style
2134 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2135   (use-package google-c-style
2136     :ensure t
2137     :config
2138     (add-hook 'c-mode-hook 'google-set-c-style)
2139     (add-hook 'c++-mode-hook 'google-set-c-style))
2140 #+END_SRC
2141
2142 ** Lua
2143 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2144   (use-package lua-mode
2145     :ensure t)
2146 #+END_SRC
2147
2148 ** Scheme
2149 Install =guile=, =guile= is an implementation of =Scheme= programming language.
2150 #+BEGIN_SRC sh
2151   brew install guile
2152 #+END_SRC
2153
2154 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2155   (setq geiser-scheme-implementation 'guile)
2156 #+END_SRC
2157
2158 #+BEGIN_SRC scheme
2159   (define a "3")
2160   a
2161 #+END_SRC
2162
2163 #+RESULTS:
2164 : 3
2165
2166 ** Racket
2167 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2168   (use-package racket-mode
2169     :ensure t
2170     :config
2171     (define-key racket-mode-map (kbd "s-r") 'racket-run)
2172     (add-to-list 'racket-mode-hook (lambda () (lispy-mode 1))))
2173
2174   ;; set racket path
2175   (setenv "PATH" (concat (getenv "PATH")
2176                          ":" "/Applications/Racket v6.6/bin"))
2177   (setenv "MANPATH" (concat (getenv "MANPATH")
2178                             ":" "/Applications/Racket v6.6/man"))
2179   (setq exec-path (append exec-path '("/Applications/Racket v6.6/bin")))
2180
2181   (add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
2182 #+END_SRC
2183
2184 * Compile
2185 Set the environments vairables in compilation mode
2186 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2187   (use-package compile
2188     :commands compile
2189     :config
2190     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
2191     (setq compilation-auto-jump-to-first-error t)
2192     (setq compilation-auto-jump-to-next t)
2193     (setq compilation-scroll-output 'first-error))
2194
2195   ;; super-r to compile
2196   (with-eval-after-load "compile"
2197     (define-key compilation-mode-map (kbd "C-o") nil)
2198     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
2199     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
2200     (define-key compilation-mode-map (kbd "r") #'recompile))
2201
2202   (global-set-key (kbd "s-r") 'compile)
2203 #+END_SRC
2204
2205 * Auto-Insert
2206 ** Enable auto-insert mode
2207 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2208   (auto-insert-mode t)
2209   (setq auto-insert-query nil)
2210 #+END_SRC
2211
2212 ** C++ Auto Insert
2213 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2214   (eval-after-load 'autoinsert
2215     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
2216        '(
2217          "Short description:"
2218          "/*"
2219          "\n * " (file-name-nondirectory (buffer-file-name))
2220          "\n */" > \n \n
2221          "#include <iostream>" \n
2222          "//#include \""
2223          (file-name-sans-extension
2224           (file-name-nondirectory (buffer-file-name)))
2225          ".hpp\"" \n \n
2226          "using namespace std;" \n \n
2227          "int main (int argc, char *argv[])"
2228          "\n{" \n 
2229          > _ \n
2230          "return 0;"
2231          "\n}" > \n
2232          )))
2233
2234   (eval-after-load 'autoinsert
2235     '(define-auto-insert '("\\.c\\'" . "C skeleton")
2236        '(
2237          "Short description:"
2238          "/*\n"
2239          " * " (file-name-nondirectory (buffer-file-name)) "\n"
2240          " */" > \n \n
2241          "#include <stdio.h>" \n
2242          "//#include \""
2243          (file-name-sans-extension
2244           (file-name-nondirectory (buffer-file-name)))
2245          ".h\"" \n \n
2246          "int main (int argc, char *argv[])\n"
2247          "{" \n
2248          > _ \n
2249          "return 0;\n"
2250          "}" > \n
2251          )))
2252
2253   (eval-after-load 'autoinsert
2254     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
2255        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
2256          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
2257 #+END_SRC
2258
2259 ** Python template
2260 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2261   (eval-after-load 'autoinsert
2262     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
2263        '(
2264          "Empty"
2265          "#import os,sys" \n
2266          \n \n
2267          )))
2268 #+END_SRC
2269
2270 ** Elisp 
2271 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
2272 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
2273 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2274   (eval-after-load 'autoinsert
2275     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
2276        '(
2277          "Short description: "
2278          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
2279          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
2280          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
2281          "\n
2282   ;; Copyright (C) " (format-time-string "%Y") "  "
2283          (getenv "ORGANIZATION") | (progn user-full-name) "
2284
2285   ;; Author: " (user-full-name)
2286          '(if (search-backward "&" (line-beginning-position) t)
2287               (replace-match (capitalize (user-login-name)) t t))
2288          '(end-of-line 1) " <" (progn user-mail-address) ">
2289   ;; Keywords: "
2290          '(require 'finder)
2291          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2292          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2293                            finder-known-keywords)
2294                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2295                               finder-known-keywords
2296                               "\n"))
2297          ((let ((minibuffer-help-form v2))
2298             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2299           str ", ") & -2 "
2300
2301   \;; This program is free software; you can redistribute it and/or modify
2302   \;; it under the terms of the GNU General Public License as published by
2303   \;; the Free Software Foundation, either version 3 of the License, or
2304   \;; (at your option) any later version.
2305
2306   \;; This program is distributed in the hope that it will be useful,
2307   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2308   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2309   \;; GNU General Public License for more details.
2310
2311   \;; You should have received a copy of the GNU General Public License
2312   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2313
2314   \;;; Commentary:
2315
2316   \;; " _ "
2317
2318   \;;; Code:
2319
2320
2321   \(provide '"
2322          (file-name-base)
2323          ")
2324   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2325 #+END_SRC
2326
2327 ** Org file template
2328 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2329   (eval-after-load 'autoinsert
2330     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2331        '(
2332          "title: "
2333          "#+TITLE: " str (make-string 30 ?\s) > \n
2334          "#+AUTHOR: Peng Li\n"
2335          "#+EMAIL: seudut@gmail.com\n"
2336          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2337          > \n
2338          > _)))
2339 #+END_SRC
2340
2341 * Markdown mode
2342 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2343   (use-package markdown-mode
2344     :ensure t
2345     :commands (markdown-mode gfm-mode)
2346     :mode (("README\\.md\\'" . gfm-mode)
2347            ("\\.md\\'" . markdown-mode)
2348            ("\\.markdown\\'" . markdown-mode))
2349     :init (setq markdown-command "multimarkdown"))
2350 #+END_SRC
2351
2352 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2353   (use-package markdown-preview-eww
2354     :ensure t)
2355 #+END_SRC
2356
2357 * Gnus
2358 ** Gmail setting 
2359 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2360 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2361   (setq user-mail-address "seudut@gmail.com"
2362         user-full-name "Peng Li")
2363
2364   (setq gnus-select-method
2365         '(nnimap "gmail"
2366                  (nnimap-address "imap.gmail.com")
2367                  (nnimap-server-port "imaps")
2368                  (nnimap-stream ssl)))
2369
2370   (setq smtpmail-smtp-service 587
2371         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2372
2373   ;; Use gmail sending mail
2374   (setq message-send-mail-function 'smtpmail-send-it
2375         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2376         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2377         smtpmail-default-smtp-server "smtp.gmail.com"
2378         smtpmail-smtp-server "smtp.gmail.com"
2379         smtpmail-smtp-service 587
2380         starttls-use-gnutls t)
2381 #+END_SRC
2382
2383 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2384 and =<PASSWORD>= with the password
2385 #+BEGIN_EXAMPLE
2386   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2387   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2388 #+END_EXAMPLE
2389
2390 Then Run =M-x gnus=
2391
2392 ** Group buffer
2393 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2394   (use-package gnus
2395     :init
2396     (setq gnus-permanently-visible-groups "\.*")
2397     :config
2398     (cond (window-system
2399            (setq custom-background-mode 'light)
2400            (defface my-group-face-1
2401              '((t (:foreground "Red" :bold t))) "First group face")
2402            (defface my-group-face-2
2403              '((t (:foreground "DarkSeaGreen4" :bold t)))
2404              "Second group face")
2405            (defface my-group-face-3
2406              '((t (:foreground "Green4" :bold t))) "Third group face")
2407            (defface my-group-face-4
2408              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2409            (defface my-group-face-5
2410              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2411     (setq gnus-group-highlight
2412           '(((> unread 200) . my-group-face-1)
2413             ((and (< level 3) (zerop unread)) . my-group-face-2)
2414             ((< level 3) . my-group-face-3)
2415             ((zerop unread) . my-group-face-4)
2416             (t . my-group-face-5))))
2417
2418
2419   ;; key-
2420   (add-hook 'gnus-group-mode-hook (lambda ()
2421                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2422                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2423                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2424                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2425 #+END_SRC
2426
2427 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2428   (setq gnus-fetch-old-headers 't)
2429
2430
2431
2432   (setq gnus-extract-address-components
2433         'mail-extract-address-components)
2434   ;; summary buffer 
2435   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2436   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2437                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2438                                       (604800 . "%a, %b %-d")
2439                                       (15778476 . "%b %-d")
2440                                       (t . "%Y-%m-%d")))
2441
2442   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2443   (setq gnus-unread-mark ?\.)
2444   (setq gnus-use-correct-string-widths t)
2445
2446   ;; thread
2447   (setq gnus-thread-hide-subtree t)
2448
2449   ;; (with-eval-after-load 'gnus-summary-mode
2450   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2451
2452   (add-hook 'gnus-summary-mode-hook (lambda ()
2453                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2454
2455
2456 #+END_SRC
2457
2458 ** Windows layout
2459 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2460 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2461   (gnus-add-configuration
2462    '(summary
2463      (horizontal 1.0
2464                  (vertical 35
2465                            (group 1.0))
2466                  (vertical 1.0
2467                            (summary 1.0 poine)))))
2468
2469   (gnus-add-configuration
2470    '(article
2471      (horizontal 1.0
2472                  (vertical 35
2473                            (group 1.0))
2474                  (vertical 1.0
2475                            (summary 0.50 point)
2476                            (article 1.0)))))
2477
2478   (with-eval-after-load 'gnus-group-mode
2479     (gnus-group-select-group "INBOX"))
2480   ;; (add-hook 'gnus-group-mode-map (lambda ()
2481   ;;                               (gnus-group-select-group "INBOX")))
2482 #+END_SRC
2483
2484 * Mu4e
2485 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]]
2486
2487 ** OfflineImap - download all mails from IMAP into local directory, and keep in sync
2488 #+BEGIN_SRC sh :results output replace
2489   # offline-imap
2490   brew install offline-imap
2491
2492   cp /usr/local/etc/offlineimap.conf ~/.offlineimapr
2493
2494   #For the =offlineimap= config on mac, using =sslcacertfile= instead of =cert_fingerpring=. On Mac
2495   sslcacertfile = /usr/local/etc/openssl/cert.pem 
2496 #+END_SRC
2497
2498 #+BEGIN_SRC conf 
2499   [general]
2500   ui=TTYUI
2501   accounts = Gmail
2502   autorefresh = 5
2503
2504   [Account Gmail]
2505   localrepository = Gmail-Local
2506   remoterepository = Gmail-Remote
2507
2508   [Repository Gmail-Local]
2509   type = Maildir
2510   localfolders = ~/.Mail/seudut@gmail.com
2511
2512   [Repository Gmail-Remote]
2513   type = Gmail
2514   remotehost = imap.gmail.com
2515   remoteuser = seudut@gmail.com
2516   remotepass = xxxxxxxx
2517   realdelete = no
2518   ssl = yes
2519   #cert_fingerprint = <insert gmail server fingerprint here>
2520   sslcacertfile = /usr/local/etc/openssl/cert.pem
2521   maxconnections = 1
2522   folderfilter = lambda folder: folder not in ['[Gmail]/Trash',
2523                                                '[Gmail]/Spam',
2524                                                '[Gmail]/All Mail',
2525                                                ]
2526 #+END_SRC
2527
2528 Then, run =offlineimap= to sync the mail
2529
2530 ** Mu - fast search, view mails and extract attachments.
2531 #+BEGIN_SRC sh
2532   EMACS=/usr/local/bin/emacs brew install mu --with-emacs
2533 #+END_SRC
2534
2535 Then, run =mu index --maildir=~/.Mail=
2536
2537 ** Mu4e - Emacs frontend of Mu
2538 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]]
2539 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2540   (require 'mu4e)
2541   (setq mu4e-maildir "~/.Mail")
2542   (setq mu4e-drafts-folder "/[Gmail].Drafts")
2543   (setq mu4e-sent-folder   "/[Gmail].Sent Mail")
2544   ;; don't save message to Sent Messages, Gmail/IMAP takes care of this
2545   (setq mu4e-sent-messages-behavior 'delete)
2546   ;; allow for updating mail using 'U' in the main view:
2547   (setq mu4e-get-mail-command "offlineimap")
2548
2549   ;; shortcuts
2550   (setq mu4e-maildir-shortcuts
2551       '( ("/INBOX"               . ?i)
2552          ("/[Gmail].Sent Mail"   . ?s)))
2553
2554   ;; something about ourselves
2555   (setq
2556      user-mail-address "seudut@gmail.com"
2557      user-full-name  "Peng Li"
2558      mu4e-compose-signature
2559       (concat
2560         "Thanks,\n"
2561         "Peng\n"))
2562
2563   ;; show images
2564   (setq mu4e-show-images t)
2565
2566   ;; use imagemagick, if available
2567   (when (fboundp 'imagemagick-register-types)
2568     (imagemagick-register-types))
2569
2570   ;; convert html emails properly
2571   ;; Possible options:
2572   ;;   - html2text -utf8 -width 72
2573   ;;   - textutil -stdin -format html -convert txt -stdout
2574   ;;   - html2markdown | grep -v '&nbsp_place_holder;' (Requires html2text pypi)
2575   ;;   - w3m -dump -cols 80 -T text/html
2576   ;;   - view in browser (provided below)
2577   (setq mu4e-html2text-command "textutil -stdin -format html -convert txt -stdout")
2578
2579   ;; spell check
2580   (add-hook 'mu4e-compose-mode-hook
2581           (defun my-do-compose-stuff ()
2582              "My settings for message composition."
2583              (set-fill-column 72)
2584              (flyspell-mode)))
2585
2586   ;; add option to view html message in a browser
2587   ;; `aV` in view to activate
2588   (add-to-list 'mu4e-view-actions
2589     '("ViewInBrowser" . mu4e-action-view-in-browser) t)
2590
2591   ;; fetch mail every 10 mins
2592   (setq mu4e-update-interval 600)
2593
2594   ;; mu4e view
2595   (setq-default mu4e-headers-fields '((:flags . 6)
2596                                       (:from-or-to . 22)
2597                                       (:mailing-list . 20)
2598                                       (:thread-subject . 70)
2599                                       (:human-date . 16)))
2600 #+END_SRC
2601
2602 ** Smtp - send mail
2603 - =gnutls=, depends on =gnutls=, first confirm this is installed, otherwise, =brew install gnutls=
2604 - =~/.authinfo=
2605 #+BEGIN_SRC fundamental 
2606   machine smtp.gmail.com login <gmail username> password <gmail password>
2607 #+END_SRC
2608 - OPTIONAL, encrypt the =~/.authinfo= file
2609 #+BEGIN_SRC sh :results output replace
2610   gpg --output ~/.authinfo.gpg --symmetric ~/.authinfo
2611 #+END_SRC
2612
2613 * Ediff
2614 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2615   (with-eval-after-load 'ediff
2616     (setq ediff-split-window-function 'split-window-horizontally)
2617     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2618     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2619     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2620     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2621 #+END_SRC
2622
2623 * Entertainment
2624 ** GnuGo
2625 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
2626 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2627   (use-package gnugo
2628     :ensure t
2629     :defer t
2630     :init
2631     (require 'gnugo-imgen)
2632     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2633     (add-hook 'gnugo-start-game-hook '(lambda ()
2634                                         (gnugo-image-display-mode)
2635                                         (gnugo-grid-mode)))
2636     :config
2637     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2638 #+END_SRC
2639
2640 ** Emms
2641 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2642 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2643   (use-package emms
2644     :ensure t
2645     :init
2646     (setq emms-directory (concat sd-temp-directory "emms"))
2647     (setq emms-source-file-default-directory "~/Music/")
2648     :config
2649     (emms-standard)
2650     (emms-default-players)
2651     (define-emms-simple-player mplayer '(file url)
2652       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2653                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2654                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2655                     ".m4a" ".flv" ".ogv" ".pls"))
2656       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2657     (emms-history-load))
2658 #+END_SRC
2659
2660 * Dictionary
2661 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2662   (use-package bing-dict
2663     :ensure t
2664     :init
2665     (global-set-key (kbd "s-d") 'bing-dict-brief)
2666     :commands (bing-dict-brief))
2667 #+END_SRC
2668
2669 * Key Bindings
2670 Here are some global key bindings for basic editting
2671 ** Esc in minibuffer
2672 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2673 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2674   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2675   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2676   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2677   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2678   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2679   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2680   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2681   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2682   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2683
2684   ;; Also map s-h same as C-g
2685   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2686 #+END_SRC
2687
2688 ** Project operations - =super=
2689 *** Projectile
2690 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2691   (use-package projectile
2692     :ensure t
2693     :init
2694     (setq projectile-enable-caching t)
2695     (setq projectile-switch-project-action (lambda ()
2696                                              (projectile-dired)
2697                                              (sd/project-switch-action)))
2698     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2699     :config
2700     (add-to-list 'projectile-globally-ignored-files "GTAGS")
2701     (projectile-global-mode t))
2702
2703   (use-package persp-projectile
2704     :ensure t
2705     :config
2706     (persp-mode)
2707     :bind
2708     (:map projectile-mode-map
2709           ("s-t" . projectile-persp-switch-project)))
2710
2711   ;; (defun sd/change-default-directory (buffer dir)
2712   ;;   "change defafult directory of buffer to dir"
2713   ;;   (with-current-buffer buffer
2714   ;;     (cd dir)))
2715
2716   ;; change default-directory of scratch buffer to projectile-project-root 
2717   (defun sd/project-switch-action ()
2718     "Change default-directory of scratch buffer to current projectile-project-root directory"
2719     (interactive)
2720     (dolist (buffer (buffer-list))
2721       (if (string-match (concat "scratch.*" (projectile-project-name))
2722                         (buffer-name buffer))
2723           (let ((root (projectile-project-root)))
2724             (with-current-buffer buffer
2725               (cd root)))
2726         ;; (sd/change-default-directory buffer (projectile-project-root))
2727         )))
2728 #+END_SRC
2729
2730 *** project config =super= keybindings
2731 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2732   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2733   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2734   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2735   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2736   ;; s-l  -->  goto-line
2737   ;; (global-set-key (kbd "s-/") 'swiper)
2738   ;; s-;  -->
2739   ;; s-'  -->  'next-multiframe-window
2740   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2741
2742   (global-set-key (kbd "s-f") 'projectile-find-file)
2743   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2744
2745   (global-set-key (kbd "s-n") 'persp-next)
2746   (global-set-key (kbd "s-p") 'persp-prev)
2747   (global-set-key (kbd "s-;") 'persp-switch-last)
2748
2749   (global-set-key (kbd "s-=") 'text-scale-increase)
2750   (global-set-key (kbd "s--") 'text-scale-decrease)
2751
2752   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2753
2754
2755   ;; someothers default mapping on super (command) key
2756   ;; s-s save-buffer
2757   ;; s-k kill-this-buffer
2758
2759
2760   ;; s-h  -->  ns-do-hide-emacs
2761   ;; s-j  -->  ido-switch-buffer  +
2762   ;; s-k  -->  kill-this-buffer
2763   ;; s-l  -->  goto-line
2764   ;; s-;  -->  undefined
2765   ;; s-'  -->  next-multiframe-window
2766   ;; s-ret --> toggle-frame-fullscreen +
2767
2768   ;; s-y  -->  ns-paste-secondary
2769   ;; s-u  -->  revert-buffer
2770   ;; s-i  -->  undefined - but used for iterm globally
2771   ;; s-o  -->  used for emacs globally
2772   ;; s-p  -->  projectile-persp-switch-project  +  
2773   ;; s-[  -->  next-buffer  +    
2774   ;; s-]  -->  previous-buffer +
2775
2776   ;; s-0  -->  undefined
2777   ;; s-9  -->  undefined
2778   ;; s-8  -->  undefined
2779   ;; s-7  -->  undefined
2780   ;; s-6  -->  undefined
2781   ;; s--  -->  center-line
2782   ;; s-=  -->  undefined
2783
2784   ;; s-n  -->  make-frame
2785   ;; s-m  -->  iconify-frame
2786   ;; s-b  -->  undefined
2787   ;; s-,  -->  customize
2788   ;; s-.  -->  undefined
2789   ;; s-/  -->  undefined
2790
2791   ;; s-g  -->  isearch-repeat-forward
2792   ;; s-f  -->  projectile-find-file   +
2793   ;; s-d  -->  isearch-repeat-background
2794   ;; s-s  -->  save-buffer
2795   ;; s-a  -->  make-whole-buffer
2796
2797   ;; s-b  -->  undefined
2798   ;; s-v  -->  yank
2799   ;; s-c  -->  ns-copy-including-secondary
2800
2801   ;; s-t  -->  ns-popup-font-panel
2802   ;; s-r  -->  undefined
2803   ;; s-e  -->  isearch-yanqk-kill
2804   ;; s-w  -->  delete-frame
2805   ;; s-q  -->  same-buffers-kill-emacs
2806
2807   ;; s-`  -->  other-frame
2808 #+END_SRC
2809
2810 ** Windown & Buffer - =C-o=
2811 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2812 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2813 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2814   (winner-mode 1)
2815
2816   (defun sd/delete-current-window ()
2817     (interactive)
2818     (if (> (length (window-list)) 1)
2819         (delete-window)
2820       (message "Only one Windows now!")))
2821
2822   (defun sd/toggle-max-windows ()
2823     "Set maximize current if there are multiple windows, if only
2824   one window, window undo"
2825     (interactive)
2826     (if (equal  (length (window-list)) 1)
2827         (winner-undo)
2828       (delete-other-windows)))
2829
2830   (defhydra sd/hydra-window (:color red :columns nil)
2831     "Window"
2832     ;; windows switch
2833     ("h" windmove-left nil :exit t)
2834     ("j" windmove-down nil :exit t)
2835     ("k" windmove-up nil :exit t)
2836     ("l" windmove-right nil :exit t)
2837     ("C-o" other-window nil :exit t)
2838     ;; window resize
2839     ("H" hydra-move-splitter-left nil)
2840     ("J" hydra-move-splitter-down nil)
2841     ("K" hydra-move-splitter-up nil)
2842     ("L" hydra-move-splitter-right nil)
2843     ;; windows split
2844     ("v" (lambda ()
2845            (interactive)
2846            (split-window-right)
2847            (windmove-right))
2848      "vert" :exit t)
2849     ("x" (lambda ()
2850            (interactive)
2851            (split-window-below)
2852            (windmove-down))
2853      "horz" :exit t)
2854     ;; buffer / windows switch
2855     ("o" sd/toggle-max-windows "one" :exit t)
2856     ("C-k" sd/delete-current-window "del" :exit t)
2857     ("C-d" (lambda ()
2858              (interactive)
2859              (kill-buffer)
2860              (sd/delete-current-window))
2861      "kill" :exit t)
2862
2863     ;; ace-window
2864     ;; ("'" other-window "other" :exit t)
2865     ;; ("a" ace-window "ace")
2866     ("s" ace-swap-window "swap")
2867     ("D" ace-delete-window "ace-one" :exit t)
2868     ;; ("i" ace-maximize-window "ace-one" :exit t)
2869     ;; Windows undo - redo
2870     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2871     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2872
2873     ;; ibuffer, dired, eshell, bookmarks
2874     ;; ("C-i" other-window nil :exit t)
2875     ("C-b" ido-switch-buffer nil :exit t)
2876     ("C-f" projectile-find-file nil :exit t)
2877     ("C-p" persp-switch :exit t)
2878
2879     ;; other special buffers
2880     ("d" sd/project-or-dired-jump nil :exit t)
2881     ("b" ibuffer nil :exit t)
2882     ("t" multi-term nil :exit t)
2883     ("e" sd/toggle-project-eshell nil :exit t)
2884     ("m" bookmark-jump-other-window nil :exit t)
2885     ("M" bookmark-set nil :exit t)
2886     ("g" magit-status nil :exit t)
2887     ;; ("p" paradox-list-packages nil :exit t)
2888
2889     ;; quit
2890     ("q" nil "cancel")
2891     ("<ESC>" nil)
2892     ("C-h" windmove-left nil :exit t)
2893     ("C-j" windmove-down nil :exit t)
2894     ("C-k" windmove-up :exit t)
2895     ("C-l" windmove-right nil :exit t)
2896     ("C-;" nil nil :exit t)
2897     ("n" nil nil :exit t)
2898     ("[" nil nil :exit t)
2899     ("]" nil nil :exit t)
2900     ("f" nil))
2901
2902   (global-unset-key (kbd "C-o"))
2903   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2904
2905   (defun sd/project-or-dired-jump ()
2906     "If under project, jump to the root directory, otherwise
2907   jump to dired of current file"
2908     (interactive)
2909     (if (projectile-project-p)
2910         (projectile-dired)
2911       (dired-jump)))
2912 #+END_SRC
2913
2914 ** Motion
2915 - =C-M-=
2916 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
2917 *** Command Arguments, numeric argumens
2918 =C-u 4= same as =C-4=, =M-4=
2919 *** Basic movement
2920 moving by line / word / 
2921 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
2922 =C-a=, =C-e=
2923 =M-m= (move first non-whitespace on this line) 
2924 =M-}=, =M-{=, Move forward end of paragraph
2925 =M-a=, =M-e=,  beginning / end of sentence
2926 =C-M-a=, =C-M-e=, move begining of defun
2927 =C-x ]=, =C-x [=, forward/backward one page
2928 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
2929 =M-<=, =M->=, beginning/end of buffer
2930 =M-r=, Repositiong point
2931
2932 *** Moving by S-expression / List
2933 *** Marks
2934 =C-<SPC>= set marks toggle the region
2935 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
2936 =C-x C-x= Exchanges the point and mark.
2937
2938 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
2939 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2940   (defun push-mark-no-activate ()
2941     "Pushes `point' to `mark-ring' and does not activate the region
2942      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
2943     (interactive)
2944     (push-mark (point) t nil)
2945     (message "Pushed mark to ring"))
2946
2947   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
2948
2949   (defun jump-to-mark ()
2950     "Jumps to the local mark, respecting the `mark-ring' order.
2951     This is the same as using \\[set-mark-command] with the prefix argument."
2952     (interactive)
2953     (set-mark-command 1))
2954
2955   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
2956
2957   (defun exchange-point-and-mark-no-activate ()
2958     "Identical to \\[exchange-point-and-mark] but will not activate the region."
2959     (interactive)
2960     (exchange-point-and-mark)
2961     (deactivate-mark nil))
2962
2963   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
2964 #+END_SRC
2965
2966 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
2967 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
2968 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
2969 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2970   (setq mark-ring-max 50)
2971
2972   (use-package helm
2973     :ensure t
2974     :init
2975     (global-set-key (kbd "M-`") #'helm-mark-ring))
2976
2977   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
2978 #+END_SRC
2979
2980 =M-h= marks the next paragraph
2981 =C-x h= marks the whole buffer
2982 =C-M-h= marks the next defun
2983 =C-x C-p= marks the next page
2984 *** Registers
2985 Registers can save text, position, rectangles, file and configuration and other things.
2986 Here for movement, we can use register to save/jump position
2987 =C-x r SPC= store point in register
2988 =C-x r j= jump to register
2989 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2990   (use-package list-register
2991     :ensure t)
2992 #+END_SRC
2993
2994 *** Bookmarks
2995 As I would like use bookmakr for different buffer/files. to help to swith
2996 different buffer/file quickly. this setting is in Windows/buffer node
2997 =C-x r m= set a bookmarks
2998 =C-x r l= list bookmarks
2999 =C-x r b= jump to bookmarks
3000
3001 *** Search
3002 Search, replace and hightlight will in later paragraph
3003 *** =Avy= for easy motion
3004 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3005   (use-package avy
3006     :ensure t
3007     :config
3008     (avy-setup-default))
3009
3010   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
3011   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
3012   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
3013   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
3014
3015   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
3016   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
3017
3018   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3019   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
3020   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
3021
3022   ;; ;; will delete above 
3023   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
3024   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
3025   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
3026   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
3027   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3028   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
3029   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
3030 #+END_SRC
3031
3032 *** =Imenu= goto tag
3033 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3034   (global-set-key (kbd "M-i") #'counsel-imenu)
3035   ;; (global-set-key (kbd "M-i") #'imenu)
3036
3037   ;; define M-[ as C-M-a
3038   ;; http://ergoemacs.org/emacs/emacs_key-translation-map.html
3039   (define-key key-translation-map (kbd "M-[") (kbd "C-M-a"))
3040   (define-key key-translation-map (kbd "M-]") (kbd "C-M-e"))
3041 #+END_SRC
3042
3043 *** Go-to line
3044 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3045   (global-set-key (kbd "M-l") 'goto-line)
3046 #+END_SRC
3047
3048 ** Edit
3049 *** basic editting
3050 - cut, yank, =C-w=, =C-y=
3051 - save, revert
3052 - undo, redo - undo-tree
3053 - select, expand-region
3054 - spell check, flyspell
3055
3056 *** Kill ring
3057 =helm-show-kill-ring=
3058 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3059   (setq kill-ring-max 100)                ; default is 60p
3060
3061   (use-package helm
3062     :ensure t
3063     :init
3064     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
3065 #+END_SRC
3066
3067 *** undo-tree
3068 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3069   (use-package undo-tree
3070     :ensure t
3071     :config
3072     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
3073     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
3074     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
3075     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
3076     (global-undo-tree-mode 1))
3077
3078   (global-set-key (kbd "s-u") 'undo-tree-visualize)
3079 #+END_SRC
3080
3081 *** flyspell
3082 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
3083 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3084   (setenv "DICPATH" "/usr/local/share/hunspell")
3085
3086   (when (executable-find "hunspell")
3087     (setq-default ispell-program-name "hunspell")
3088     (setq ispell-really-hunspell t))
3089
3090   ;; (defun text-mode-hook-setup ()
3091   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
3092   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
3093   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
3094   ;; (add-hook 'text-mode-hook 'flyspell-mode)
3095
3096   ;; enable flyspell check on comments and strings in progmamming modes
3097   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
3098
3099   ;; I don't use the default mappings
3100   (with-eval-after-load 'flyspell
3101     (define-key flyspell-mode-map (kbd "C-;") nil)
3102     (define-key flyspell-mode-map (kbd "C-,") nil)
3103     (define-key flyspell-mode-map (kbd "C-.") nil))
3104 #+END_SRC
3105
3106 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]]
3107 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3108   ;; NO spell check for embedded snippets
3109   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
3110     (let ((rlt ad-return-value)
3111           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
3112           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
3113           old-flag
3114           b e)
3115       (when ad-return-value
3116         (save-excursion
3117           (setq old-flag case-fold-search)
3118           (setq case-fold-search t)
3119           (setq b (re-search-backward begin-regexp nil t))
3120           (if b (setq e (re-search-forward end-regexp nil t)))
3121           (setq case-fold-search old-flag))
3122         (if (and b e (< (point) e)) (setq rlt nil)))
3123       (setq ad-return-value rlt)))
3124 #+END_SRC
3125
3126 ** Search & Replace / hightlight =M-s=
3127 *** isearch
3128 =C-s=, =C-r=, 
3129 =C-w= add word at point to search string, 
3130 =M-%= query replace
3131 =C-M-y= add character at point to search string
3132 =M-s C-e= add reset of line at point
3133 =C-y= yank from clipboard to search string
3134 =M-n=, =M-p=, history
3135 =C-M-i= complete search string
3136 set the isearch history size, the default is only =16=
3137 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3138   (setq history-length 5000)
3139   (setq regexp-search-ring-max 1000)
3140   (setq search-ring-max 1000)
3141
3142   ;; when search a word or a symbol , also add the word into regexp-search-ring
3143   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
3144     "Add search-ring to regexp-search-ring"
3145     (unless regexp
3146       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
3147 #+END_SRC
3148
3149 *** =M-s= prefix
3150 use the prefix =M-s= for searching in buffers
3151 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3152   (defun sd/make-keymap (key bindings)
3153     (setq keymap (make-sparse-keymap))
3154     (dolist (binding bindings)
3155       (define-key keymap (car binding) (cdr binding)))
3156     (global-set-key key keymap))
3157
3158   ;; (sd/make-keymap "\M-s"
3159   ;;                 '(("w" . save-buffer)
3160   ;;                   ;; ("\M-w" . save-buffer)
3161   ;;                   ("e" . revert-buffer)
3162   ;;                   ("s" . isearch-forward-regexp)
3163   ;;                   ("\M-s" . isearch-forward-regexp)
3164   ;;                   ("r" . isearch-backward-regexp)
3165   ;;                   ("." . isearch-forward-symbol-at-point)
3166   ;;                   ("o" . occur)
3167   ;;                   ;; ("h" . highlight-symbol-at-point)
3168   ;;                   ("h" . highlight-symbol)
3169   ;;                   ("m" . highlight-regexp)
3170   ;;                   ("l" . highlight-lines-matching-regexp)
3171   ;;                   ("M" . unhighlight-regexp)
3172   ;;                   ("f" . keyboard-quit)
3173   ;;                   ("q" . keyboard-quit)))
3174 #+END_SRC
3175
3176 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3177   (use-package highlight-symbol
3178     :ensure t)
3179
3180   (defhydra sd/search-replace (:color red :columns nil)
3181     "Search"
3182     ("w" save-buffer "save" :exit t)
3183     ("e" revert-buffer "revert" :exit t)
3184     ("u" undo-tree-visualize "undo" :exit t)
3185     ("s" isearch-forward-regexp "s-search" :exit t)
3186     ("M-s" isearch-forward-regexp "s-search" :exit t)
3187     ("r" isearch-backward-regexp "r-search" :exit t)
3188     ("." isearch-forward-symbol-at-point "search point" :exit t)
3189     ("/" swiper "swiper" :exit t)
3190     ("o" occur "occur" :exit t)
3191     ("h" highlight-symbol "higlight" :exit t)
3192     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
3193     ("m" highlight-regexp "higlight" :exit t)
3194     ("M" unhighlight-regexp "unhiglight" :exit t)
3195     ("q" nil "quit")
3196     ("f" nil))
3197
3198   (global-unset-key (kbd "M-s"))
3199   (global-set-key (kbd "M-s") 'sd/search-replace/body)
3200
3201
3202   ;; search and replace and highlight
3203   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
3204   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
3205   (global-set-key (kbd "s-[") 'highlight-symbol-next)
3206   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
3207   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
3208 #+END_SRC
3209
3210 *** Occur
3211 Occur search key bindings
3212 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3213   (defun sd/occur-keys ()
3214     "My key bindings in occur-mode"
3215     (interactive)
3216     (switch-to-buffer-other-window "*Occur*")
3217     (define-key occur-mode-map (kbd "C-o") nil)
3218     (define-key occur-mode-map (kbd "C-n") (lambda ()
3219                                              (interactive)
3220                                              (occur-next)
3221                                              (occur-mode-goto-occurrence-other-window)
3222                                              (recenter)
3223                                              (other-window 1)))
3224     (define-key occur-mode-map (kbd "C-p") (lambda ()
3225                                              (interactive)
3226                                              (occur-prev)
3227                                              (occur-mode-goto-occurrence-other-window)
3228                                              (recenter)
3229                                              (other-window 1))))
3230
3231   (add-hook 'occur-hook #'sd/occur-keys)
3232
3233   (use-package color-moccur
3234     :ensure t
3235     :commands (isearch-moccur isearch-all)
3236     :init
3237     (setq isearch-lazy-highlight t)
3238     :config
3239     (use-package moccur-edit))
3240 #+END_SRC
3241
3242 *** Swiper
3243 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
3244 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3245   (use-package swiper
3246     :ensure t
3247     :init
3248     (setq ivy-use-virtual-buffers t)
3249     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
3250     :config
3251     (ivy-mode)
3252     (global-set-key (kbd "s-/") 'swiper)
3253     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
3254     (define-key swiper-map (kbd "C-.") (lambda ()
3255                                          (interactive)
3256                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
3257     (define-key swiper-map (kbd "M-.") (lambda ()
3258                                          (interactive)
3259                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
3260 #+END_SRC
3261
3262 ** Expand region map
3263 *** Install =expand-region=
3264 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3265   (use-package expand-region
3266     :ensure t
3267     :config
3268     ;; (global-set-key (kbd "C-=") 'er/expand-region)
3269     )
3270 #+END_SRC
3271
3272 *** Add a =hydra= map for =expand-region= operations
3273 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3274   (defun sd/mark-line ()
3275     "Mark current line without whitespace beginning"
3276     (interactive)
3277     (back-to-indentation)
3278     (set-mark (line-end-position)))
3279
3280   (defhydra sd/expand-selected (:color red :columns nil
3281                                        :post (deactivate-mark)
3282                                        )
3283     "Selected"
3284     ;; select
3285     ;; ("e"  er/expand-region "+")
3286     ("SPC" er/expand-region "+")
3287     ;; ("c"  er/contract-region "-")
3288     ("S-SPC" er/contract-region "-")
3289     ("r" (lambda ()
3290            (interactive)
3291            (er/contract-region 0))
3292      "reset")
3293
3294     ("i'" er/mark-inside-quotes "in")
3295     ("i\"" er/mark-inside-quotes nil)
3296     ("o'" er/mark-outside-quotes "out")
3297     ("o\"" er/mark-outside-quotes nil)
3298
3299     ("i{" er/mark-inside-pairs nil)
3300     ("i(" er/mark-inside-pairs nil)
3301     ("o{" er/mark-inside-pairs nil)
3302     ("o(" er/mark-inside-pairs nil)
3303
3304     ("p" er/mark-paragraph "paragraph")
3305
3306     ("l" sd/mark-line "line")
3307     ("u" er/mark-url "url")
3308     ("f" er/mark-defun "fun")
3309     ("n" er/mark-next-accessor "next")
3310
3311     ("x" exchange-point-and-mark "exchange")
3312
3313     ;; Search
3314     ;; higlight
3315
3316     ;; exit
3317     ("d" kill-region "delete" :exit t)
3318
3319     ("y" kill-ring-save "yank" :exit t)
3320     ("M-SPC" nil "quit" :exit t)
3321     ;; ("C-SPC" "quit" :exit t)
3322     ("q" deactivate-mark "quit" :exit t))
3323
3324   (global-set-key (kbd "M-SPC") (lambda ()
3325                                   (interactive)
3326                                   (set-mark-command nil)
3327                                   ;; (er/expand-region 1)
3328                                   (er/mark-word)
3329                                   (sd/expand-selected/body)))
3330 #+END_SRC
3331
3332 *** TODO make expand-region hydra work with lispy selected
3333 ** =C-w= delete backward word
3334 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]]
3335 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3336   (defun sd/kill-region-or-backward-kill-word ()
3337     (interactive)
3338     (if (region-active-p)
3339         (kill-region (point) (mark))
3340       (backward-kill-word 1)))
3341
3342   (global-set-key (kbd "C-w") 'sd/kill-region-or-backward-kill-word)
3343 #+END_SRC
3344
3345 * key
3346 - passion
3347 - vision
3348 - mission
3349
3350 * TODO todolist
3351 ** rucket
3352 ** player video on iphone for 
3353 ** SICP
3354 ** music searcher
3355 search music on some music web site