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