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