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