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