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