emacs - add basicTex package
[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   wget http://tug.org/cgi-bin/mactex-download/BasicTeX.pkg
921
922   sudo tlmgr update --self
923
924   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
925 #+END_SRC
926
927 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
928   ;; ;; allow for export=>beamer by placing
929
930   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
931   ;; #+LaTeX_CLASS: beamer in org files
932   (unless (boundp 'org-export-latex-classes)
933     (setq org-export-latex-classes nil))
934   (add-to-list 'org-export-latex-classes
935     ;; beamer class, for presentations
936     '("beamer"
937        "\\documentclass[11pt]{beamer}\n
938         \\mode<{{{beamermode}}}>\n
939         \\usetheme{{{{beamertheme}}}}\n
940         \\usecolortheme{{{{beamercolortheme}}}}\n
941         \\beamertemplateballitem\n
942         \\setbeameroption{show notes}
943         \\usepackage[utf8]{inputenc}\n
944         \\usepackage[T1]{fontenc}\n
945         \\usepackage{hyperref}\n
946         \\usepackage{color}
947         \\usepackage{listings}
948         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
949     frame=single,
950     basicstyle=\\small,
951     showspaces=false,showstringspaces=false,
952     showtabs=false,
953     keywordstyle=\\color{blue}\\bfseries,
954     commentstyle=\\color{red},
955     }\n
956         \\usepackage{verbatim}\n
957         \\institute{{{{beamerinstitute}}}}\n          
958          \\subject{{{{beamersubject}}}}\n"
959
960        ("\\section{%s}" . "\\section*{%s}")
961  
962        ("\\begin{frame}[fragile]\\frametitle{%s}"
963          "\\end{frame}"
964          "\\begin{frame}[fragile]\\frametitle{%s}"
965          "\\end{frame}")))
966
967     ;; letter class, for formal letters
968
969     (add-to-list 'org-export-latex-classes
970
971     '("letter"
972        "\\documentclass[11pt]{letter}\n
973         \\usepackage[utf8]{inputenc}\n
974         \\usepackage[T1]{fontenc}\n
975         \\usepackage{color}"
976  
977        ("\\section{%s}" . "\\section*{%s}")
978        ("\\subsection{%s}" . "\\subsection*{%s}")
979        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
980        ("\\paragraph{%s}" . "\\paragraph*{%s}")
981        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
982
983
984   (require 'ox-md)
985   (require 'ox-beamer)
986
987   (setq org-latex-pdf-process
988         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
989           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
990           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
991
992   (setq TeX-parse-self t)
993
994   (setq TeX-PDF-mode t)
995   (add-hook 'LaTeX-mode-hook
996             (lambda ()
997               (LaTeX-math-mode)
998               (setq TeX-master t)))
999
1000 #+END_SRC
1001
1002 ** others
1003
1004 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1005
1006 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1007
1008   (add-to-list 'org-structure-template-alist
1009                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1010   (add-to-list 'org-structure-template-alist
1011                '("S" "#+BEGIN_SRC sh\n?\n#+END_SRC"))
1012   (add-to-list 'org-structure-template-alist
1013                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1014
1015 #+END_SRC
1016
1017 * Magit
1018 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1019 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1020 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1021   (use-package magit
1022     :ensure t
1023     :init
1024     ;; don't ask me to confirm the unsaved change 
1025     (setq magit-save-repository-buffers nil)
1026     ;; default is 50
1027     (setq git-commit-summary-max-length 80)
1028     :commands magit-status magit-blame
1029     :config
1030     (dolist (map (list magit-status-mode-map
1031                        magit-log-mode-map
1032                        magit-diff-mode-map
1033                        magit-staged-section-map))
1034       (define-key map "j" 'magit-section-forward)
1035       (define-key map "k" 'magit-section-backward)
1036       (define-key map "D" 'magit-discard)
1037       (define-key map "O" 'magit-discard-file)
1038       (define-key map "n" nil)
1039       (define-key map "p" nil)
1040       (define-key map "v" 'recenter-top-bottom)
1041       (define-key map "i" 'magit-section-toggle)))
1042 #+END_SRC
1043
1044 * Eshell
1045 ** Eshell alias
1046 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1047   (defalias 'e 'find-file)
1048   (defalias 'ff 'find-file)
1049   (defalias 'ee 'find-files)
1050 #+END_SRC
1051
1052 ** eshell temp directory
1053 set default eshell history folder
1054 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1055   (setq eshell-directory-name (concat  sd-temp-directory "eshell"))
1056 #+END_SRC
1057
1058 ** Eshell erase buffer
1059 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1060   (defun sd/eshell-clear-buffer ()
1061     "Clear eshell buffer"
1062     (interactive)
1063     (let ((inhibit-read-only t))
1064       (erase-buffer)
1065       (eshell-send-input)))
1066
1067    (add-hook 'eshell-mode-hook (lambda ()
1068                                 (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1069 #+END_SRC
1070
1071 ** Toggle Eshell
1072 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1073 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1074   (defun sd/window-has-eshell ()
1075     "Check if current windows list has a eshell buffer, and return the window"
1076     (interactive)
1077     (let ((ret nil))
1078       (walk-windows (lambda (window)
1079                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1080                                  'eshell-mode)
1081                           (setq ret window)))
1082                     nil nil)
1083       ret))
1084
1085   (defun sd/toggle-project-eshell ()
1086     "Toggle a eshell buffer vertically"
1087     (interactive)
1088     (if (sd/window-has-eshell)
1089         (if (equal major-mode 'eshell-mode)
1090             (progn
1091               (if (equal (length (window-list)) 1)
1092                   (mode-line-other-buffer)
1093                 (delete-window)))
1094           (select-window (sd/window-has-eshell)))
1095       (progn
1096         (split-window-vertically (- (/ (window-total-height) 3)))
1097         (other-window 1)
1098         (if (projectile-project-p)
1099             (projectile-run-eshell)
1100           (eshell))
1101         ;; (let ((dir default-directory))
1102         
1103         ;;   (split-window-vertically (- (/ (window-total-height) 3)))
1104         ;;   (other-window 1)
1105         ;;   (unless (and (boundp 'eshell-buffer-name) (get-buffer eshell-buffer-name))
1106         ;;     (eshell))
1107         ;;   (switch-to-buffer eshell-buffer-name)
1108         ;;   (goto-char (point-max))
1109         ;;   (eshell-kill-input)
1110         ;;   (insert (format "cd %s" dir))
1111         ;;   (eshell-send-input))
1112         )))
1113
1114   ;; (global-unset-key (kbd "M-`"))
1115   (global-set-key (kbd "s-e") 'sd/toggle-project-eshell)
1116 #+END_SRC
1117
1118 ** exec-path-from-shell
1119 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1120   (use-package exec-path-from-shell
1121     :ensure t
1122     :init
1123     (setq exec-path-from-shell-check-startup-files nil)
1124     :config
1125     (exec-path-from-shell-initialize))
1126 #+END_SRC
1127
1128 ** TODO smart display
1129 * Misc Settings
1130
1131 ** [[https://github.com/abo-abo/hydra][Hydra]]
1132 *** hydra install
1133 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1134   (use-package hydra
1135     :ensure t)
1136   ;; disable new line in minibuffer when hint hydra
1137   (setq hydra-lv nil)
1138 #+END_SRC
1139
1140 *** Windmove Splitter
1141
1142 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1143
1144 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1145
1146   (defun hydra-move-splitter-left (arg)
1147     "Move window splitter left."
1148     (interactive "p")
1149     (if (let ((windmove-wrap-around))
1150           (windmove-find-other-window 'right))
1151         (shrink-window-horizontally arg)
1152       (enlarge-window-horizontally arg)))
1153
1154   (defun hydra-move-splitter-right (arg)
1155     "Move window splitter right."
1156     (interactive "p")
1157     (if (let ((windmove-wrap-around))
1158           (windmove-find-other-window 'right))
1159         (enlarge-window-horizontally arg)
1160       (shrink-window-horizontally arg)))
1161
1162   (defun hydra-move-splitter-up (arg)
1163     "Move window splitter up."
1164     (interactive "p")
1165     (if (let ((windmove-wrap-around))
1166           (windmove-find-other-window 'up))
1167         (enlarge-window arg)
1168       (shrink-window arg)))
1169
1170   (defun hydra-move-splitter-down (arg)
1171     "Move window splitter down."
1172     (interactive "p")
1173     (if (let ((windmove-wrap-around))
1174           (windmove-find-other-window 'up))
1175         (shrink-window arg)
1176       (enlarge-window arg)))
1177
1178 #+END_SRC
1179
1180 *** hydra misc
1181 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1182   (defhydra sd/hydra-misc (:color red :columns nil)
1183     "Misc"
1184     ("e" eshell "eshell" :exit t)
1185     ("p" (lambda ()
1186            (interactive)
1187            (if (not (eq nil (get-buffer "*Packages*")))
1188                (switch-to-buffer "*Packages*")
1189              (package-list-packages)))
1190      "list-package" :exit t)
1191     ("g" magit-status "git-status" :exit t)
1192     ("'" mode-line-other-buffer "last buffer" :exit t)
1193     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1194     ("m" man "man" :exit t)
1195     ("d" dired-jump "dired" :exit t)
1196     ("b" ibuffer "ibuffer" :exit t)
1197     ("q" nil "quit")
1198     ("f" nil "quit"))
1199
1200   (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1201 #+END_SRC
1202
1203 *** hydra launcher
1204 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1205   (defhydra sd/hydra-launcher (:color blue :columns 2)
1206     "Launch"
1207     ("e" emms "emms" :exit t)
1208     ("q" nil "cancel"))
1209 #+END_SRC
1210
1211 ** Line Number
1212
1213 Enable linum mode on programming modes
1214
1215 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1216   (add-hook 'prog-mode-hook 'linum-mode)
1217   ;; (add-hook 'prog-mode-hook (lambda ()
1218   ;;                             (setq-default indicate-empty-lines t)))
1219 #+END_SRC
1220
1221 Fix the font size of line number
1222
1223 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1224
1225   (defun fix-linum-size ()
1226        (interactive)
1227        (set-face-attribute 'linum nil :height 110))
1228
1229   (add-hook 'linum-mode-hook 'fix-linum-size)
1230
1231 #+END_SRC
1232
1233 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1234
1235 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1236
1237   (use-package linum-relative
1238     :ensure t
1239     :config
1240     (defun linum-new-mode ()
1241       "If line numbers aren't displayed, then display them.
1242   Otherwise, toggle between absolute and relative numbers."
1243       (interactive)
1244       (if linum-mode
1245           (linum-relative-toggle)
1246         (linum-mode 1)))
1247
1248     :bind
1249     ("A-k" . linum-new-mode))
1250
1251   ;; auto enable linum-new-mode in programming modes
1252   (add-hook 'prog-mode-hook 'linum-relative-mode)
1253
1254 #+END_SRC
1255
1256 ** Save File Position
1257
1258 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1259
1260   (require 'saveplace)
1261   (setq-default save-place t)
1262   (setq save-place-forget-unreadable-files t)
1263   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1264
1265 #+END_SRC
1266
1267 ** Multi-term
1268
1269 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1270
1271   (use-package multi-term
1272     :ensure t)
1273
1274 #+END_SRC
1275
1276 ** ace-link
1277
1278 [[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
1279 Type =o= to go to the link
1280
1281 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1282
1283   (use-package ace-link
1284     :ensure t
1285     :init
1286     (ace-link-setup-default))
1287
1288 #+END_SRC
1289
1290 ** Smart Parens
1291
1292 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1293
1294   (use-package smartparens
1295     :ensure t
1296     :config
1297     (progn
1298       (require 'smartparens-config)
1299       (add-hook 'prog-mode-hook 'smartparens-mode)))
1300
1301 #+END_SRC
1302
1303 ** Ace-Windows
1304
1305 [[https://github.com/abo-abo/ace-window][ace-window]] 
1306
1307 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1308
1309   (use-package ace-window
1310     :ensure t
1311     :defer t
1312   ;  :init
1313   ;  (global-set-key (kbd "M-o") 'ace-window)
1314     :config
1315     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1316
1317 #+END_SRC
1318
1319 ** Which key
1320
1321 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1322
1323 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1324
1325   (use-package which-key
1326     :ensure t
1327     :config
1328     (which-key-mode))
1329
1330 #+END_SRC
1331
1332 ** View only for some directory
1333 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]]
1334 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1335   (dir-locals-set-class-variables
1336    'emacs
1337    '((nil . ((buffer-read-only . t)
1338              (show-trailing-whitespace . nil)
1339              (tab-width . 8)
1340              (eval . (whitespace-mode -1))
1341              ;; (eval . (when buffer-file-name
1342              ;;           (setq-local view-no-disable-on-exit t)
1343              ;;           (view-mode-enter)))
1344              ))))
1345
1346   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1347   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1348   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1349   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1350   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1351
1352   ;; temp-mode.el
1353   ;; Temporary minor mode
1354   ;; Main use is to enable it only in specific buffers to achieve the goal of
1355   ;; buffer-specific keymaps
1356
1357   ;; (defvar sd/temp-mode-map (make-sparse-keymap)
1358   ;;   "Keymap while temp-mode is active.")
1359
1360   ;; ;;;###autoload
1361   ;; (define-minor-mode sd/temp-mode
1362   ;;   "A temporary minor mode to be activated only specific to a buffer."
1363   ;;   nil
1364   ;;   :lighter " Temp"
1365   ;;   sd/temp-mode-map)
1366
1367   ;; (defun sd/temp-hook ()
1368   ;;   (if sd/temp-mode
1369   ;;       (progn
1370   ;;      (define-key sd/temp-mode-map (kbd "q") 'quit-window))))
1371
1372   ;; (add-hook 'lispy-mode-hook (lambda ()
1373   ;;                           (sd/temp-hook)))
1374 #+END_SRC
1375
1376 ** Info plus
1377 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1378   (el-get-bundle info+
1379     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1380     ;; (require 'info+)
1381     )
1382
1383   (with-eval-after-load 'info
1384     (require 'info+))
1385 #+END_SRC
1386
1387 ** TODO bookmark
1388
1389 ** TODO Calendar
1390 ** advice info
1391 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1392   (defun sd/info-mode ()
1393     (interactive)
1394     (unless (equal major-mode 'Info-mode)
1395       (unless (> (length (window-list)) 1)
1396         (split-window-right))
1397       (other-window 1)
1398       ;; (info)
1399       ))
1400
1401   ;; (global-set-key (kbd "C-h i") 'sd/info-mode)
1402
1403   ;; open Info buffer in other window instead of current window
1404   (defadvice info (before my-info (&optional file buf) activate)
1405     (sd/info-mode))
1406
1407   (defadvice Info-exit (after my-info-exit activate)
1408     (sd/delete-current-window))
1409 #+END_SRC
1410
1411 ** TODO Man mode
1412 Color for Man-mode
1413
1414 ** Demo It
1415 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1416   ;; (el-get-bundle howardabrams/demo-it)
1417
1418   (use-package org-tree-slide
1419     :ensure t)
1420
1421   ;; (use-package yasnippet
1422   ;;   :ensure t)
1423 #+END_SRC
1424
1425 ** Presentation
1426 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1427   (use-package org-tree-slide
1428     :ensure
1429     :config
1430     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1431     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1432     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1433     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1434 #+END_SRC
1435
1436 ** pdf-tools
1437 #+BEGIN_SRC sh
1438   brew install poppler
1439 #+END_SRC
1440
1441 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1442   (use-package pdf-tools
1443     :ensure t
1444     :init
1445     ;; run to complete the installation
1446     (pdf-tools-install)
1447     :config
1448     (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1449     (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1450
1451   (defun sd/pdf-outline-map ()
1452     "My keybindings in pdf-outline-map"
1453     (interactive)
1454     (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1455     (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1456     (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1457     (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1458 #+END_SRC
1459
1460 ** help-mode
1461 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1462   (defun sd/help-mode-hook ()
1463     "Mapping for help mode"
1464     (define-key help-mode-map "j" 'next-line)
1465     (define-key help-mode-map "k" 'previous-line)
1466     (define-key help-mode-map "h" 'forward-char)
1467     (define-key help-mode-map "l" 'forward-char)
1468     (define-key help-mode-map "H" 'describe-mode)
1469     (define-key help-mode-map "v" 'recenter-top-bottom)
1470     (define-key help-mode-map "i" 'forward-button)
1471     (define-key help-mode-map "I" 'backward-button)
1472     (define-key help-mode-map "o" 'ace-link-help))
1473
1474   (add-hook 'help-mode-hook 'sd/help-mode-hook)
1475 #+END_SRC
1476
1477 * Dired
1478 ** Dired bindings
1479 =C-o= is defined as a global key for window operation, here unset it in dired mode
1480 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1481   (defun sd/dired-key-map ()
1482     "My keybindings for dired"
1483     (interactive)
1484     ;; these two prefix are used globally
1485     (define-key dired-mode-map (kbd "C-o") nil)
1486     (define-key dired-mode-map (kbd "M-s") nil)
1487     ;; toggle hidden files
1488     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1489     ;; scroll 
1490     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1491     (define-key dired-mode-map (kbd "DEL") 'scroll-down-command)
1492     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1493     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1494     (define-key dired-mode-map (kbd "g") 'dired-goto-file)
1495     ;; (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1496     ;; jump to fil/dirs
1497     (define-key dired-mode-map (kbd "f") 'dired-isearch-filenames)
1498     ;; subdir
1499     ;; i dired-maybe-insert-subdir
1500     ;; o dired-find-file-other-window (switch to other window)
1501     ;; O dired-display-file
1502     (define-key dired-mode-map (kbd "G") 'ido-dired)
1503     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file)
1504     (define-key dired-mode-map (kbd "h") 'dired-summary)
1505     (define-key dired-mode-map (kbd "r") 'revert-buffer)
1506     (define-key dired-mode-map (kbd "l") 'dired-display-file)
1507     (define-key dired-mode-map [C-backspace] 'dired-up-directory)
1508     (define-key dired-mode-map (kbd "?") 'describe-mode)
1509     (define-key dired-mode-map (kbd "z") #'sd/dired-get-size)
1510     (define-key dired-mode-map (kbd "C-d") 'dired-kill-subdir)
1511     (define-key dired-mode-map (kbd "M-d") 'dired-kill-subdir)
1512     (define-key dired-mode-map (kbd "J") 'diredp-next-subdir)
1513     (define-key dired-mode-map (kbd "TAB") 'diredp-next-subdir)
1514     (define-key dired-mode-map (kbd "K") 'diredp-prev-subdir)
1515     (define-key dired-mode-map (kbd "O") 'dired-display-file)
1516     (define-key dired-mode-map (kbd "I") 'other-window)) 
1517
1518   (use-package dired
1519     :config
1520     (require 'dired-x)
1521     ;; also load dired+
1522     (use-package dired+
1523       :ensure t
1524       :init (setq diredp-hide-details-initially-flag nil))
1525     
1526     (setq dired-omit-mode t)
1527     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
1528     (add-hook 'dired-mode-hook (lambda ()
1529                                  (sd/dired-key-map)
1530                                  (dired-omit-mode))))
1531
1532   (defadvice dired-summary (around sd/dired-summary activate)
1533     "Revisied dired summary."
1534     (interactive)
1535     (dired-why)
1536     (message
1537      "Δ: 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"))
1538
1539   (defun sd/dired-high-level-dir ()
1540     "Go to higher level directory"
1541     (interactive)
1542     (find-alternate-file ".."))
1543 #+END_SRC
1544
1545 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1546   (defun sd/dired-new-file ()
1547     "Create a new file in dired mode"
1548     (interactive)
1549     (call-interactively 'find-file))
1550
1551   ;; copied from abo-abo's config
1552   (defun sd/dired-get-size ()
1553     (interactive)
1554     (let ((files (dired-get-marked-files)))
1555       (with-temp-buffer
1556         (apply 'call-process "/usr/bin/du" nil t nil "-sch" files)
1557         (message
1558          "Size of all marked files: %s"
1559          (progn
1560            (re-search-backward "\\(^[ 0-9.,]+[A-Za-z]+\\).*total$")
1561            (match-string 1))))))
1562 #+END_SRC
1563
1564 ** disable ido when dired new file
1565 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
1566 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’]]
1567 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1568   (defun mk-anti-ido-advice (func &rest args)
1569     "Temporarily disable IDO and call function FUNC with arguments ARGS."
1570     (interactive)
1571     (let ((read-file-name-function #'read-file-name-default))
1572       (if (called-interactively-p 'any)
1573           (call-interactively func)
1574         (apply func args))))
1575
1576   (defun mk-disable-ido (command)
1577     "Disable IDO when command COMMAND is called."
1578     (advice-add command :around #'mk-anti-ido-advice))
1579 #+END_SRC
1580
1581 Disalble =ido= when new a directory or file in =dired= mode
1582 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1583   ;; call the function which you want to disable ido
1584   (mk-disable-ido 'dired-create-directory)
1585   (mk-disable-ido 'sd/dired-new-file)
1586 #+END_SRC
1587
1588 ** Dired open with
1589 =!= =dired-do-shell-command=
1590 =&= =dired-do-async-shell-command=
1591 here on Mac, just use "open" commands to pen =.pdf=,  =.html= and image files
1592 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1593   (setq dired-guess-shell-alist-user
1594         '(("\\.pdf\\'" "open" "okular")
1595           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
1596           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "open")
1597           ("\\.\\(?:xcf\\)\\'" "gimp")
1598           ("\\.csv\\'" "libreoffice")
1599           ("\\.tex\\'" "pdflatex" "latex")
1600           ("\\.\\(?:mp4\\|mkv\\|avi\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'" "mplayer")
1601           ("\\.\\(?:mp3\\|flac\\)\\'" "rhythmbox")
1602           ("\\.html?\\'" "open")
1603           ("\\.dmg\\'" "open")
1604           ("\\.cue?\\'" "audacious")))
1605
1606
1607   (defun sd/dired-start-process (cmd &optional file-list)
1608     (interactive
1609      (let ((files (dired-get-marked-files
1610                    t current-prefix-arg)))
1611        (list
1612         (unless (eq system-type 'windows-nt)
1613           (dired-read-shell-command "& on %s: "
1614                                     current-prefix-arg files))
1615         files)))
1616     
1617     (if (eq system-type 'windows-nt)
1618         (dolist (file file-list)
1619           (w32-shell-execute "open" (expand-file-name file)))
1620       (let (list-switch)
1621         (start-process
1622          cmd nil shell-file-name
1623          shell-command-switch
1624          (format
1625           "nohup 1>/dev/null 2>/dev/null %s \"%s\""
1626           cmd
1627           ;; (if (and (> (length file-list) 1)
1628           ;;          (setq list-switch
1629           ;;                (cadr (assoc cmd ora-dired-filelist-cmd))))
1630           ;;     (format "%s %s" cmd list-switch)
1631           ;;   cmd)
1632           (mapconcat #'expand-file-name file-list "\" \""))))))
1633 #+END_SRC
1634
1635 ** dired-hacks
1636 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1637   (use-package dired-hacks-utils
1638     :ensure t
1639     :defer t)
1640 #+END_SRC
1641
1642 ** dired-narrow
1643 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1644   ;;narrow dired to match filter
1645   (use-package dired-narrow
1646     :ensure t
1647     :commands (dired-narrow)
1648     :bind (:map dired-mode-map
1649                 ("/" . dired-narrow)))
1650 #+END_SRC
1651
1652 * Ibuffer
1653 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1654   (global-set-key (kbd "s-b") 'ibuffer)
1655
1656   (with-eval-after-load 'ibuffer
1657     (define-key ibuffer-mode-map (kbd "C-o") nil)
1658     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
1659     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
1660     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
1661     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer)
1662     (define-key ibuffer-mode-map (kbd "h") 'sd/ibuffer-summary))
1663
1664   (defun sd/ibuffer-summary ()
1665     "Show summary of keybindings in ibuffer mode"
1666     (interactive)
1667     (message
1668      "Β: m|u - (un)mark, /-filter, //-remove filter, t, RET, g, k, S, D, Q; q to quit; h for help"))
1669 #+END_SRC
1670
1671 * Completion
1672 company mode and company-statistics
1673 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1674   (use-package company
1675     :ensure t
1676     :diminish company-mode
1677     :init (setq company-idle-delay 0.1)
1678     :config
1679     (global-company-mode))
1680
1681   (use-package company-statistics
1682     :ensure t
1683     :config
1684     (company-statistics-mode))
1685 #+END_SRC
1686
1687 * Libs
1688 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1689   (use-package s
1690     :ensure t)
1691 #+END_SRC
1692
1693 * Programming Language
1694 ** Emacs Lisp
1695 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1696   (use-package color-identifiers-mode
1697     :ensure t
1698     :init
1699     (add-hook 'emacs-lisp-mode-hook 'color-identifiers-mode)
1700
1701     :diminish color-identifiers-mode)
1702
1703   (global-prettify-symbols-mode t)
1704 #+END_SRC
1705
1706 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
1707 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
1708 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1709   (use-package lispy
1710     :ensure t
1711     :init
1712     (eval-after-load "lispy"
1713       `(progn
1714          (define-key lispy-mode-map (kbd "M-o") nil)))
1715     :config
1716     (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))
1717 #+END_SRC
1718
1719 ** Perl
1720 *** CPerl mode
1721 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
1722 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1723   (defalias 'perl-mode 'cperl-mode)
1724
1725   ;; (setq cperl-hairy t)
1726   ;; Turns on most of the CPerlMode options
1727   (setq cperl-auto-newline t)
1728   (setq cperl-highlight-variables-indiscriminately t)
1729   ;(setq cperl-indent-level 4)
1730   ;(setq cperl-continued-statement-offset 4)
1731   (setq cperl-close-paren-offset -4)
1732   (setq cperl-indent-parents-as-block t)
1733   (setq cperl-tab-always-indent t)
1734   ;(setq cperl-brace-offset  0)
1735
1736   (add-hook 'cperl-mode-hook
1737             '(lambda ()
1738                (cperl-set-style "C++")))
1739
1740   (defalias 'perldoc 'cperl-perldoc)
1741 #+END_SRC
1742
1743 *** Perl template
1744 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
1745 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1746   (eval-after-load 'autoinsert
1747     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
1748        '(
1749          "Empty"
1750          "#!/usr/bin/perl -w" \n
1751          \n
1752          "use strict;" >  \n \n
1753          > _
1754          )))
1755 #+END_SRC
1756
1757 *** Perl Keywords
1758 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1759   (font-lock-add-keywords 'cperl-mode
1760                           '(("\\(say\\)" . cperl-nonoverridable-face)
1761                             ("\\([0-9.]\\)*" . font-lock-constant-face)
1762                             ("\".*\\(\\\n\\).*\"" . font-lock-constant-face)
1763                             ("\n" . font-lock-constant-face)
1764                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
1765
1766     ;; (font-lock-add-keywords 'Man-mode
1767     ;;                         '(("\\(NAME\\)" . font-lock-function-name-face)))
1768
1769 #+END_SRC
1770
1771 *** Run Perl
1772 Change the compile-command to set the default command run when call =compile=
1773 Mapping =s-r= (on Mac, it's =Command + R= to run the script. Here =current-prefix-arg= is set
1774 to call =compilation=  interactively.
1775 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1776   (defun my-perl-hook ()
1777     (progn
1778       (setq-local compilation-read-command nil)
1779       (set (make-local-variable 'compile-command)
1780            (concat "/usr/bin/perl "
1781                    (if buffer-file-name
1782                        (shell-quote-argument buffer-file-name))))
1783       (local-set-key (kbd "s-r")
1784                      (lambda ()
1785                        (interactive)
1786                                           ;                       (setq current-prefix-arg '(4)) ; C-u
1787                        (call-interactively 'compile)))))
1788
1789   (add-hook 'cperl-mode-hook 'my-perl-hook)
1790 #+END_SRC
1791
1792 ** C & C++
1793 *** c/c++ style
1794 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1795   (setq c-default-style "stroustrup"
1796         c-basic-offset 4)
1797 #+END_SRC
1798
1799 *** flycheck
1800 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1801   (use-package flycheck
1802     :ensure t)
1803 #+END_SRC
1804
1805 *** irony
1806 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1807   (use-package irony
1808     :ensure t
1809     :config
1810     (add-hook 'c++-mode-hook 'irony-mode)
1811     (add-hook 'c-mode-hook 'irony-mode)
1812     (add-hook 'objc-mode-hook 'irony-mode))
1813 #+END_SRC
1814
1815 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
1816 #+BEGIN_SRC sh
1817   brew install llvm --with-clang
1818 #+END_SRC
1819
1820 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
1821 #+BEGIN_SRC emacs-lisp :tangle no :results silent
1822   (irony-install-server)
1823 #+END_SRC
1824
1825 #+BEGIN_SRC sh
1826   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/3.6.2/lib/libclang.dylib \
1827         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/3.6.2/include \
1828         -DCMAKE_INSTALL_PREFIX\=/Users/peli3/.emacs.d/irony/ \
1829         /Users/peli3/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
1830 #+END_SRC
1831
1832 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
1833 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1834   ;; replace the `completion-at-point' and `complete-symbol' bindings in
1835   ;; irony-mode's buffers by irony-mode's function
1836   (defun my-irony-mode-hook ()
1837     (define-key irony-mode-map [remap completion-at-point]
1838       'irony-completion-at-point-async)
1839     (define-key irony-mode-map [remap complete-symbol]
1840       'irony-completion-at-point-async))
1841   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
1842   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
1843 #+END_SRC
1844
1845 irony-company
1846 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1847   (use-package company-irony
1848     :ensure t)
1849
1850   (eval-after-load 'company
1851     '(add-to-list 'company-backends 'company-irony))
1852
1853   (use-package flycheck-irony
1854     :ensure t)
1855
1856   (eval-after-load 'flycheck
1857     '(add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
1858 #+END_SRC
1859
1860 *** gtags
1861 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1862   (use-package ggtags
1863     :ensure t)
1864
1865   (add-hook 'c-mode-common-hook
1866             (lambda ()
1867               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
1868                 (ggtags-mode 1))))
1869
1870   (require 'cc-mode)
1871   (require 'semantic)
1872
1873   (global-semanticdb-minor-mode 1)
1874   (global-semantic-idle-scheduler-mode 1)
1875
1876   (semantic-mode 1)
1877
1878 #+END_SRC
1879
1880 *** yasnippet
1881 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1882   (use-package yasnippet
1883     :ensure t)
1884 #+END_SRC
1885
1886 *** semantic
1887 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1888
1889 #+END_SRC
1890
1891 *** google C style
1892 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1893   (use-package google-c-style
1894     :ensure t
1895     :config
1896     (add-hook 'c-mode-hook 'google-set-c-style))
1897 #+END_SRC
1898
1899 * Compile
1900 Set the environments vairables in compilation mode
1901 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1902   (use-package compile
1903     :commands compile
1904     :config
1905     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
1906     (setq compilation-auto-jump-to-first-error t)
1907     (setq compilation-auto-jump-to-next t)
1908     (setq compilation-scroll-output 'first-error))
1909
1910   ;; super-r to compile
1911   (with-eval-after-load "compile"
1912     (define-key compilation-mode-map (kbd "C-o") nil)
1913     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
1914     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
1915     (define-key compilation-mode-map (kbd "r") #'recompile))
1916 #+END_SRC
1917
1918 * Auto-Insert
1919 ** Enable auto-insert mode
1920 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1921   (auto-insert-mode t)
1922   (setq auto-insert-query nil)
1923 #+END_SRC
1924
1925 ** C++ Auto Insert
1926 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1927   (eval-after-load 'autoinsert
1928     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
1929        '(
1930          "Short description:"
1931          "/*"
1932          "\n * " (file-name-nondirectory (buffer-file-name))
1933          "\n */" > \n \n
1934          "#include <iostream>" \n
1935          "//#include \""
1936          (file-name-sans-extension
1937           (file-name-nondirectory (buffer-file-name)))
1938          ".hpp\"" \n \n
1939          "using namespace std;" \n \n
1940          "int main ()"
1941          "\n{" \n 
1942          > _ \n
1943          "return 0;"
1944          "\n}" > \n
1945          )))
1946
1947   (eval-after-load 'autoinsert
1948     '(define-auto-insert '("\\.c\\'" . "C skeleton")
1949        '(
1950          "Short description:"
1951          "/*\n"
1952          " * " (file-name-nondirectory (buffer-file-name)) "\n"
1953          " */" > \n \n
1954          "#include <stdio.h>" \n
1955          "//#include \""
1956          (file-name-sans-extension
1957           (file-name-nondirectory (buffer-file-name)))
1958          ".h\"" \n \n
1959          "int main ()\n"
1960          "{" \n
1961          > _ \n
1962          "return 0;\n"
1963          "}" > \n
1964          )))
1965
1966   (eval-after-load 'autoinsert
1967     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
1968        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
1969          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
1970 #+END_SRC
1971
1972 ** Python template
1973 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1974   (eval-after-load 'autoinsert
1975     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
1976        '(
1977          "Empty"
1978          "#import os,sys" \n
1979          \n \n
1980          )))
1981 #+END_SRC
1982
1983 ** Elisp 
1984 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
1985 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
1986 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1987   (eval-after-load 'autoinsert
1988     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
1989        '(
1990          "Short description: "
1991          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
1992          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
1993          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
1994          "\n
1995   ;; Copyright (C) " (format-time-string "%Y") "  "
1996          (getenv "ORGANIZATION") | (progn user-full-name) "
1997
1998   ;; Author: " (user-full-name)
1999          '(if (search-backward "&" (line-beginning-position) t)
2000               (replace-match (capitalize (user-login-name)) t t))
2001          '(end-of-line 1) " <" (progn user-mail-address) ">
2002   ;; Keywords: "
2003          '(require 'finder)
2004          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2005          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2006                            finder-known-keywords)
2007                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2008                               finder-known-keywords
2009                               "\n"))
2010          ((let ((minibuffer-help-form v2))
2011             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2012           str ", ") & -2 "
2013
2014   \;; This program is free software; you can redistribute it and/or modify
2015   \;; it under the terms of the GNU General Public License as published by
2016   \;; the Free Software Foundation, either version 3 of the License, or
2017   \;; (at your option) any later version.
2018
2019   \;; This program is distributed in the hope that it will be useful,
2020   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2021   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2022   \;; GNU General Public License for more details.
2023
2024   \;; You should have received a copy of the GNU General Public License
2025   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2026
2027   \;;; Commentary:
2028
2029   \;; " _ "
2030
2031   \;;; Code:
2032
2033
2034   \(provide '"
2035          (file-name-base)
2036          ")
2037   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2038 #+END_SRC
2039
2040 ** Org file template
2041 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2042   (eval-after-load 'autoinsert
2043     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2044        '(
2045          "title: "
2046          "#+TITLE: " str (make-string 30 ?\s) > \n
2047          "#+AUTHOR: Peng Li\n"
2048          "#+EMAIL: seudut@gmail.com\n"
2049          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2050          > \n
2051          > _)))
2052 #+END_SRC
2053
2054 * Markdown mode
2055 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2056   (use-package markdown-mode
2057     :ensure t
2058     :commands (markdown-mode gfm-mode)
2059     :mode (("README\\.md\\'" . gfm-mode)
2060            ("\\.md\\'" . markdown-mode)
2061            ("\\.markdown\\'" . markdown-mode))
2062     :init (setq markdown-command "multimarkdown"))
2063 #+END_SRC
2064
2065 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2066   (use-package markdown-preview-eww
2067     :ensure t)
2068 #+END_SRC
2069
2070 * Gnus
2071 ** Gmail setting 
2072 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2073 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2074   (setq user-mail-address "seudut@gmail.com"
2075         user-full-name "Peng Li")
2076
2077   (setq gnus-select-method
2078         '(nnimap "gmail"
2079                  (nnimap-address "imap.gmail.com")
2080                  (nnimap-server-port "imaps")
2081                  (nnimap-stream ssl)))
2082
2083   (setq smtpmail-smtp-service 587
2084         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2085
2086   ;; Use gmail sending mail
2087   (setq message-send-mail-function 'smtpmail-send-it
2088         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2089         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2090         smtpmail-default-smtp-server "smtp.gmail.com"
2091         smtpmail-smtp-server "smtp.gmail.com"
2092         smtpmail-smtp-service 587
2093         starttls-use-gnutls t)
2094 #+END_SRC
2095
2096 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2097 and =<PASSWORD>= with the password
2098 #+BEGIN_EXAMPLE
2099   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2100   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2101 #+END_EXAMPLE
2102
2103 Then Run =M-x gnus=
2104
2105 ** Group buffer
2106 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2107   (use-package gnus
2108     :init
2109     (setq gnus-permanently-visible-groups "\.*")
2110     :config
2111     (cond (window-system
2112            (setq custom-background-mode 'light)
2113            (defface my-group-face-1
2114              '((t (:foreground "Red" :bold t))) "First group face")
2115            (defface my-group-face-2
2116              '((t (:foreground "DarkSeaGreen4" :bold t)))
2117              "Second group face")
2118            (defface my-group-face-3
2119              '((t (:foreground "Green4" :bold t))) "Third group face")
2120            (defface my-group-face-4
2121              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2122            (defface my-group-face-5
2123              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2124     (setq gnus-group-highlight
2125           '(((> unread 200) . my-group-face-1)
2126             ((and (< level 3) (zerop unread)) . my-group-face-2)
2127             ((< level 3) . my-group-face-3)
2128             ((zerop unread) . my-group-face-4)
2129             (t . my-group-face-5))))
2130
2131
2132   ;; key-
2133   (add-hook 'gnus-group-mode-hook (lambda ()
2134                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2135                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2136                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2137                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2138 #+END_SRC
2139
2140 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2141   (setq gnus-fetch-old-headers 't)
2142
2143
2144
2145   (setq gnus-extract-address-components
2146         'mail-extract-address-components)
2147   ;; summary buffer 
2148   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2149   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2150                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2151                                       (604800 . "%a, %b %-d")
2152                                       (15778476 . "%b %-d")
2153                                       (t . "%Y-%m-%d")))
2154
2155   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2156   (setq gnus-unread-mark ?\.)
2157   (setq gnus-use-correct-string-widths t)
2158
2159   ;; thread
2160   (setq gnus-thread-hide-subtree t)
2161
2162   ;; (with-eval-after-load 'gnus-summary-mode
2163   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2164
2165   (add-hook 'gnus-summary-mode-hook (lambda ()
2166                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2167
2168
2169 #+END_SRC
2170
2171 ** Windows layout
2172 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2173 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2174   (gnus-add-configuration
2175    '(summary
2176      (horizontal 1.0
2177                  (vertical 35
2178                            (group 1.0))
2179                  (vertical 1.0
2180                            (summary 1.0 poine)))))
2181
2182   (gnus-add-configuration
2183    '(article
2184      (horizontal 1.0
2185                  (vertical 35
2186                            (group 1.0))
2187                  (vertical 1.0
2188                            (summary 0.50 point)
2189                            (article 1.0)))))
2190
2191   (with-eval-after-load 'gnus-group-mode
2192     (gnus-group-select-group "INBOX"))
2193   ;; (add-hook 'gnus-group-mode-map (lambda ()
2194   ;;                               (gnus-group-select-group "INBOX")))
2195 #+END_SRC
2196
2197 * Gnu Plot
2198 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=
2199 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2200   (use-package gnuplot
2201     :ensure
2202     :init
2203     (setq gnuplot-help-xpm nil)
2204     (setq gnuplot-line-xpm nil)
2205     (setq gnuplot-region-xpm nil)
2206     (setq gnuplot-buffer-xpm nil)
2207     (setq gnuplot-doc-xpm nil))
2208 #+END_SRC
2209
2210 Use =gnuplot= on =Org-mode= file, see [[http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html][ob-doc-gnuplot]]
2211 #+BEGIN_SRC gnuplot :exports code :file ./temp/file.png
2212   reset
2213
2214   set title "Putting it All Together"
2215
2216   set xlabel "X"
2217   set xrange [-8:8]
2218   set xtics -8,2,8
2219
2220
2221   set ylabel "Y"
2222   set yrange [-20:70]
2223   set ytics -20,10,70
2224
2225   f(x) = x**2
2226   g(x) = x**3
2227   h(x) = 10*sqrt(abs(x))
2228
2229   plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3
2230 #+END_SRC
2231
2232 #+RESULTS:
2233 [[file:./temp/file.png]]
2234 * Ediff
2235 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2236   (with-eval-after-load 'ediff
2237     (setq ediff-split-window-function 'split-window-horizontally)
2238     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2239     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2240     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2241     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2242 #+END_SRC
2243
2244 * Entertainment
2245 ** GnoGo
2246 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
2247 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2248   (use-package gnugo
2249     :ensure t
2250     :defer t
2251     :init
2252     (require 'gnugo-imgen)
2253     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2254     (add-hook 'gnugo-start-game-hook '(lambda ()
2255                                         (gnugo-image-display-mode)
2256                                         (gnugo-grid-mode)))
2257     :config
2258     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2259 #+END_SRC
2260
2261 ** Emms
2262 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2263 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2264   (use-package emms
2265     :ensure t
2266     :init
2267     (setq emms-directory (concat sd-temp-directory "emms"))
2268     (setq emms-source-file-default-directory "~/Music/")
2269     :config
2270     (emms-standard)
2271     (emms-default-players)
2272     (define-emms-simple-player mplayer '(file url)
2273       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2274                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2275                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2276                     ".m4a" ".flv" ".ogv" ".pls"))
2277       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2278     (emms-history-load))
2279 #+END_SRC
2280
2281 * Dictionary
2282 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2283   (use-package bing-dict
2284     :ensure t
2285     :init
2286     (global-set-key (kbd "s-d") 'bing-dict-brief)
2287     :commands (bing-dict-brief))
2288 #+END_SRC
2289
2290 * Key Bindings
2291 Here are some global key bindings for basic editting
2292 ** Esc in minibuffer
2293 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2294 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2295   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2296   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2297   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2298   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2299   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2300   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2301   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2302   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2303   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2304
2305   ;; Also map s-h same as C-g
2306   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2307 #+END_SRC
2308
2309 ** Project operations - =super=
2310 *** Projectile
2311 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2312   (use-package projectile
2313     :ensure t
2314     :init
2315     (setq projectile-enable-caching t)
2316     (setq projectile-switch-project-action (lambda ()
2317                                              (projectile-dired)
2318                                              (sd/project-switch-action)))
2319     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2320     :config
2321     (add-to-list 'projectile-globally-ignored-files "GTAGS")
2322     (projectile-global-mode t))
2323
2324   (use-package persp-projectile
2325     :ensure t
2326     :config
2327     (persp-mode)
2328     :bind
2329     (:map projectile-mode-map
2330           ("s-t" . projectile-persp-switch-project)))
2331
2332   ;; (defun sd/change-default-directory (buffer dir)
2333   ;;   "change defafult directory of buffer to dir"
2334   ;;   (with-current-buffer buffer
2335   ;;     (cd dir)))
2336
2337   ;; change default-directory of scratch buffer to projectile-project-root 
2338   (defun sd/project-switch-action ()
2339     "Change default-directory of scratch buffer to current projectile-project-root directory"
2340     (interactive)
2341     (dolist (buffer (buffer-list))
2342       (if (string-match (concat "scratch.*" (projectile-project-name))
2343                         (buffer-name buffer))
2344           (let ((root (projectile-project-root)))
2345             (with-current-buffer buffer
2346               (cd root)))
2347         ;; (sd/change-default-directory buffer (projectile-project-root))
2348         )))
2349 #+END_SRC
2350
2351 *** project config =super= keybindings
2352 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2353   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2354   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2355   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2356   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2357   ;; s-l  -->  goto-line
2358   ;; (global-set-key (kbd "s-/") 'swiper)
2359   ;; s-;  -->
2360   ;; s-'  -->  'next-multiframe-window
2361   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2362
2363   (global-set-key (kbd "s-f") 'projectile-find-file)
2364   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2365
2366   (global-set-key (kbd "s-n") 'persp-next)
2367   (global-set-key (kbd "s-p") 'persp-prev)
2368   (global-set-key (kbd "s-;") 'persp-switch-last)
2369
2370   (global-set-key (kbd "s-=") 'text-scale-increase)
2371   (global-set-key (kbd "s--") 'text-scale-decrease)
2372
2373   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2374
2375
2376   ;; someothers default mapping on super (command) key
2377   ;; s-s save-buffer
2378   ;; s-k kill-this-buffer
2379
2380
2381   ;; s-h  -->  ns-do-hide-emacs
2382   ;; s-j  -->  ido-switch-buffer  +
2383   ;; s-k  -->  kill-this-buffer
2384   ;; s-l  -->  goto-line
2385   ;; s-;  -->  undefined
2386   ;; s-'  -->  next-multiframe-window
2387   ;; s-ret --> toggle-frame-fullscreen +
2388
2389   ;; s-y  -->  ns-paste-secondary
2390   ;; s-u  -->  revert-buffer
2391   ;; s-i  -->  undefined - but used for iterm globally
2392   ;; s-o  -->  used for emacs globally
2393   ;; s-p  -->  projectile-persp-switch-project  +  
2394   ;; s-[  -->  next-buffer  +    
2395   ;; s-]  -->  previous-buffer +
2396
2397   ;; s-0  -->  undefined
2398   ;; s-9  -->  undefined
2399   ;; s-8  -->  undefined
2400   ;; s-7  -->  undefined
2401   ;; s-6  -->  undefined
2402   ;; s--  -->  center-line
2403   ;; s-=  -->  undefined
2404
2405   ;; s-n  -->  make-frame
2406   ;; s-m  -->  iconify-frame
2407   ;; s-b  -->  undefined
2408   ;; s-,  -->  customize
2409   ;; s-.  -->  undefined
2410   ;; s-/  -->  undefined
2411
2412   ;; s-g  -->  isearch-repeat-forward
2413   ;; s-f  -->  projectile-find-file   +
2414   ;; s-d  -->  isearch-repeat-background
2415   ;; s-s  -->  save-buffer
2416   ;; s-a  -->  make-whole-buffer
2417
2418   ;; s-b  -->  undefined
2419   ;; s-v  -->  yank
2420   ;; s-c  -->  ns-copy-including-secondary
2421
2422   ;; s-t  -->  ns-popup-font-panel
2423   ;; s-r  -->  undefined
2424   ;; s-e  -->  isearch-yanqk-kill
2425   ;; s-w  -->  delete-frame
2426   ;; s-q  -->  same-buffers-kill-emacs
2427
2428   ;; s-`  -->  other-frame
2429 #+END_SRC
2430
2431 ** Windown & Buffer - =C-o=
2432 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2433 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2434 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2435   (winner-mode 1)
2436
2437   (defun sd/delete-current-window ()
2438     (interactive)
2439     (if (> (length (window-list)) 1)
2440         (delete-window)
2441       (message "Only one Windows now!")))
2442
2443   (defun sd/toggle-max-windows ()
2444     "Set maximize current if there are multiple windows, if only
2445   one window, window undo"
2446     (interactive)
2447     (if (equal  (length (window-list)) 1)
2448         (winner-undo)
2449       (delete-other-windows)))
2450
2451   (defhydra sd/hydra-window (:color red :columns nil)
2452     "Window"
2453     ;; windows split
2454     ("h" windmove-left nil :exit t)
2455     ("j" windmove-down nil :exit t)
2456     ("k" windmove-up nil :exit t)
2457     ("l" windmove-right nil :exit t)
2458     ("H" hydra-move-splitter-left nil)
2459     ("J" hydra-move-splitter-down nil)
2460     ("K" hydra-move-splitter-up nil)
2461     ("L" hydra-move-splitter-right nil)
2462     ("v" (lambda ()
2463            (interactive)
2464            (split-window-right)
2465            (windmove-right))
2466      "vert" :exit t)
2467     ("x" (lambda ()
2468            (interactive)
2469            (split-window-below)
2470            (windmove-down))
2471      "horz" :exit t)
2472
2473     ;; buffer / windows switch
2474     ("o" sd/toggle-max-windows "one" :exit t)
2475     ("C-k" sd/delete-current-window "del" :exit t)
2476     ("D" (lambda ()
2477              (interactive)
2478              (kill-buffer)
2479              (sd/delete-current-window))
2480      "kill" :exit t)
2481     ("'" other-window "other" :exit t)
2482     ;; ("a" ace-window "ace")
2483     ("s" ace-swap-window "swap")
2484     ;; ("i" ace-maximize-window "ace-one" :exit t)
2485
2486     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2487     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2488
2489     ;; ibuffer, dired, eshell, bookmarks
2490     ;; ("d" ace-delete-window "ace-one" :exit t)
2491     ("C-o" ido-switch-buffer nil :exit t)
2492     ("d" sd/project-or-dired-jump nil :exit t)
2493     ("b" ibuffer nil :exit t)
2494     ("e" sd/toggle-project-eshell nil :exit t)
2495     ("m" bookmark-jump-other-window nil :exit t)
2496     ("M" bookmark-set nil :exit t)
2497     ("g" magit-status nil :exit t)
2498     ("p" paradox-list-packages nil :exit t)
2499
2500     ;; quit
2501     ("q" nil "cancel")
2502     ("<ESC>" nil)
2503     ("C-h" nil nil :exit t)
2504     ("C-j" nil nil :exit t)
2505     ;; ("C-k" nil :exit t)
2506     ("C-l" nil nil :exit t)
2507     ("C-;" nil nil :exit t)
2508     ("n" nil nil :exit t)
2509     ("[" nil nil :exit t)
2510     ("]" nil nil :exit t)
2511     ("f" nil))
2512
2513   (global-unset-key (kbd "C-o"))
2514   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2515
2516   (defun sd/project-or-dired-jump ()
2517     "If under project, jump to the root directory, otherwise
2518   jump to dired of current file"
2519     (interactive)
2520     (if (projectile-project-p)
2521         (projectile-dired)
2522       (dired-jump)))
2523 #+END_SRC
2524
2525 ** Motion
2526 - =C-M-=
2527 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
2528 *** Command Arguments, numeric argumens
2529 =C-u 4= same as =C-4=, =M-4=
2530 *** Basic movement
2531 moving by line / word / 
2532 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
2533 =C-a=, =C-e=
2534 =M-m= (move first non-whitespace on this line) 
2535 =M-}=, =M-{=, Move forward end of paragraph
2536 =M-a=, =M-e=,  beginning / end of sentence
2537 =C-M-a=, =C-M-e=, move begining of defun
2538 =C-x ]=, =C-x [=, forward/backward one page
2539 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
2540 =M-<=, =M->=, beginning/end of buffer
2541 =M-r=, Repositiong point
2542
2543 *** Moving by S-expression / List
2544 *** Marks
2545 =C-<SPC>= set marks toggle the region
2546 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
2547 =C-x C-x= Exchanges the point and mark.
2548
2549 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
2550 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2551   (defun push-mark-no-activate ()
2552     "Pushes `point' to `mark-ring' and does not activate the region
2553      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
2554     (interactive)
2555     (push-mark (point) t nil)
2556     (message "Pushed mark to ring"))
2557
2558   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
2559
2560   (defun jump-to-mark ()
2561     "Jumps to the local mark, respecting the `mark-ring' order.
2562     This is the same as using \\[set-mark-command] with the prefix argument."
2563     (interactive)
2564     (set-mark-command 1))
2565
2566   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
2567
2568   (defun exchange-point-and-mark-no-activate ()
2569     "Identical to \\[exchange-point-and-mark] but will not activate the region."
2570     (interactive)
2571     (exchange-point-and-mark)
2572     (deactivate-mark nil))
2573
2574   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
2575 #+END_SRC
2576
2577 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
2578 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
2579 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
2580 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2581   (setq mark-ring-max 50)
2582
2583   (use-package helm
2584     :ensure t
2585     :init
2586     (global-set-key (kbd "M-`") #'helm-mark-ring))
2587
2588   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
2589 #+END_SRC
2590
2591 =M-h= marks the next paragraph
2592 =C-x h= marks the whole buffer
2593 =C-M-h= marks the next defun
2594 =C-x C-p= marks the next page
2595 *** Registers
2596 Registers can save text, position, rectangles, file and configuration and other things.
2597 Here for movement, we can use register to save/jump position
2598 =C-x r SPC= store point in register
2599 =C-x r j= jump to register
2600 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2601   (use-package list-register
2602     :ensure t)
2603 #+END_SRC
2604
2605 *** Bookmarks
2606 As I would like use bookmakr for different buffer/files. to help to swith
2607 different buffer/file quickly. this setting is in Windows/buffer node
2608 =C-x r m= set a bookmarks
2609 =C-x r l= list bookmarks
2610 =C-x r b= jump to bookmarks
2611
2612 *** Search
2613 Search, replace and hightlight will in later paragraph
2614 *** =Avy= for easy motion
2615 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2616   (use-package avy
2617     :ensure t
2618     :config
2619     (avy-setup-default))
2620
2621   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
2622   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
2623   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
2624   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
2625
2626   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
2627   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
2628
2629   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2630   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
2631   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
2632
2633   ;; ;; will delete above 
2634   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
2635   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
2636   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
2637   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
2638   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2639   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
2640   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
2641 #+END_SRC
2642
2643 *** =Imenu= goto tag
2644 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2645   (global-set-key (kbd "M-i") #'counsel-imenu)
2646   ;; (global-set-key (kbd "M-i") #'imenu)
2647 #+END_SRC
2648
2649 *** Go-to line
2650 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2651   (global-set-key (kbd "M-l") 'goto-line)
2652 #+END_SRC
2653
2654 ** Edit
2655 *** basic editting
2656 - cut, yank, =C-w=, =C-y=
2657 - save, revert
2658 - undo, redo - undo-tree
2659 - select, expand-region
2660 - spell check, flyspell
2661
2662 *** Kill ring
2663 =helm-show-kill-ring=
2664 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2665   (setq kill-ring-max 100)                ; default is 60p
2666
2667   (use-package helm
2668     :ensure t
2669     :init
2670     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
2671 #+END_SRC
2672
2673 *** undo-tree
2674 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2675   (use-package undo-tree
2676     :ensure t
2677     :config
2678     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
2679     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
2680     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
2681     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
2682     (global-undo-tree-mode 1))
2683
2684   (global-set-key (kbd "s-u") 'undo-tree-visualize)
2685 #+END_SRC
2686
2687 *** flyspell
2688 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
2689 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2690   (setenv "DICPATH" "/usr/local/share/hunspell")
2691
2692   (when (executable-find "hunspell")
2693     (setq-default ispell-program-name "hunspell")
2694     (setq ispell-really-hunspell t))
2695
2696   ;; (defun text-mode-hook-setup ()
2697   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
2698   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
2699   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
2700   ;; (add-hook 'text-mode-hook 'flyspell-mode)
2701
2702   ;; enable flyspell check on comments and strings in progmamming modes
2703   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
2704
2705   ;; I don't use the default mappings
2706   (with-eval-after-load 'flyspell
2707     (define-key flyspell-mode-map (kbd "C-;") nil)
2708     (define-key flyspell-mode-map (kbd "C-,") nil)
2709     (define-key flyspell-mode-map (kbd "C-.") nil))
2710 #+END_SRC
2711
2712 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]]
2713 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2714   ;; NO spell check for embedded snippets
2715   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
2716     (let ((rlt ad-return-value)
2717           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
2718           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
2719           old-flag
2720           b e)
2721       (when ad-return-value
2722         (save-excursion
2723           (setq old-flag case-fold-search)
2724           (setq case-fold-search t)
2725           (setq b (re-search-backward begin-regexp nil t))
2726           (if b (setq e (re-search-forward end-regexp nil t)))
2727           (setq case-fold-search old-flag))
2728         (if (and b e (< (point) e)) (setq rlt nil)))
2729       (setq ad-return-value rlt)))
2730 #+END_SRC
2731
2732 ** Search & Replace / hightlight =M-s=
2733 *** isearch
2734 =C-s=, =C-r=, 
2735 =C-w= add word at point to search string, 
2736 =M-%= query replace
2737 =C-M-y= add character at point to search string
2738 =M-s C-e= add reset of line at point
2739 =C-y= yank from clipboard to search string
2740 =M-n=, =M-p=, history
2741 =C-M-i= complete search string
2742 set the isearch history size, the default is only =16=
2743 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2744   (setq history-length 5000)
2745   (setq regexp-search-ring-max 1000)
2746   (setq search-ring-max 1000)
2747
2748   ;; when search a word or a symbol , also add the word into regexp-search-ring
2749   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
2750     "Add search-ring to regexp-search-ring"
2751     (unless regexp
2752       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
2753 #+END_SRC
2754
2755 *** =M-s= prefix
2756 use the prefix =M-s= for searching in buffers
2757 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2758   (defun sd/make-keymap (key bindings)
2759     (setq keymap (make-sparse-keymap))
2760     (dolist (binding bindings)
2761       (define-key keymap (car binding) (cdr binding)))
2762     (global-set-key key keymap))
2763
2764   ;; (sd/make-keymap "\M-s"
2765   ;;                 '(("w" . save-buffer)
2766   ;;                   ;; ("\M-w" . save-buffer)
2767   ;;                   ("e" . revert-buffer)
2768   ;;                   ("s" . isearch-forward-regexp)
2769   ;;                   ("\M-s" . isearch-forward-regexp)
2770   ;;                   ("r" . isearch-backward-regexp)
2771   ;;                   ("." . isearch-forward-symbol-at-point)
2772   ;;                   ("o" . occur)
2773   ;;                   ;; ("h" . highlight-symbol-at-point)
2774   ;;                   ("h" . highlight-symbol)
2775   ;;                   ("m" . highlight-regexp)
2776   ;;                   ("l" . highlight-lines-matching-regexp)
2777   ;;                   ("M" . unhighlight-regexp)
2778   ;;                   ("f" . keyboard-quit)
2779   ;;                   ("q" . keyboard-quit)))
2780 #+END_SRC
2781
2782 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2783   (use-package highlight-symbol
2784     :ensure t)
2785
2786   (defhydra sd/search-replace (:color red :columns nil)
2787     "Search"
2788     ("w" save-buffer "save" :exit t)
2789     ("e" revert-buffer "revert" :exit t)
2790     ("u" undo-tree-visualize "undo" :exit t)
2791     ("s" isearch-forward-regexp "s-search" :exit t)
2792     ("M-s" isearch-forward-regexp "s-search" :exit t)
2793     ("r" isearch-backward-regexp "r-search" :exit t)
2794     ("." isearch-forward-symbol-at-point "search point" :exit t)
2795     ("/" swiper "swiper" :exit t)
2796     ("o" occur "occur" :exit t)
2797     ("h" highlight-symbol "higlight" :exit t)
2798     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
2799     ("m" highlight-regexp "higlight" :exit t)
2800     ("M" unhighlight-regexp "unhiglight" :exit t)
2801     ("q" nil "quit")
2802     ("f" nil))
2803
2804   (global-unset-key (kbd "M-s"))
2805   (global-set-key (kbd "M-s") 'sd/search-replace/body)
2806
2807
2808   ;; search and replace and highlight
2809   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
2810   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
2811   (global-set-key (kbd "s-[") 'highlight-symbol-next)
2812   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
2813   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
2814 #+END_SRC
2815
2816 *** Occur
2817 Occur search key bindings
2818 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2819   (defun sd/occur-keys ()
2820     "My key bindings in occur-mode"
2821     (interactive)
2822     (switch-to-buffer-other-window "*Occur*")
2823     (define-key occur-mode-map (kbd "C-o") nil)
2824     (define-key occur-mode-map (kbd "C-n") (lambda ()
2825                                              (interactive)
2826                                              (occur-next)
2827                                              (occur-mode-goto-occurrence-other-window)
2828                                              (recenter)
2829                                              (other-window 1)))
2830     (define-key occur-mode-map (kbd "C-p") (lambda ()
2831                                              (interactive)
2832                                              (occur-prev)
2833                                              (occur-mode-goto-occurrence-other-window)
2834                                              (recenter)
2835                                              (other-window 1))))
2836
2837   (add-hook 'occur-hook #'sd/occur-keys)
2838
2839   (use-package color-moccur
2840     :ensure t
2841     :commands (isearch-moccur isearch-all)
2842     :init
2843     (setq isearch-lazy-highlight t)
2844     :config
2845     (use-package moccur-edit))
2846 #+END_SRC
2847
2848 *** Swiper
2849 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
2850 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2851   (use-package swiper
2852     :ensure t
2853     :init
2854     (setq ivy-use-virtual-buffers t)
2855     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
2856     :config
2857     (ivy-mode)
2858     (global-set-key (kbd "s-/") 'swiper)
2859     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
2860     (define-key swiper-map (kbd "C-.") (lambda ()
2861                                          (interactive)
2862                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
2863     (define-key swiper-map (kbd "M-.") (lambda ()
2864                                          (interactive)
2865                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
2866 #+END_SRC
2867
2868 ** Expand region map
2869 *** Install =expand-region=
2870 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2871   (use-package expand-region
2872     :ensure t
2873     :config
2874     ;; (global-set-key (kbd "C-=") 'er/expand-region)
2875     )
2876 #+END_SRC
2877
2878 *** Add a =hydra= map for =expand-region= operations
2879 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2880   (defun sd/mark-line ()
2881     "Mark current line without whitespace beginning"
2882     (interactive)
2883     (back-to-indentation)
2884     (set-mark (line-end-position)))
2885
2886   (defhydra sd/expand-selected (:color red :columns nil
2887                                        :post (deactivate-mark)
2888                                        )
2889     "Selected"
2890     ;; select
2891     ;; ("e"  er/expand-region "+")
2892     ("SPC" er/expand-region "+")
2893     ;; ("c"  er/contract-region "-")
2894     ("S-SPC" er/contract-region "-")
2895     ("r" (lambda ()
2896            (interactive)
2897            (er/contract-region 0))
2898      "reset")
2899
2900     ("i'" er/mark-inside-quotes "in")
2901     ("i\"" er/mark-inside-quotes nil)
2902     ("o'" er/mark-outside-quotes "out")
2903     ("o\"" er/mark-outside-quotes nil)
2904
2905     ("i{" er/mark-inside-pairs nil)
2906     ("i(" er/mark-inside-pairs nil)
2907     ("o{" er/mark-inside-pairs nil)
2908     ("o(" er/mark-inside-pairs nil)
2909
2910     ("p" er/mark-paragraph "paragraph")
2911
2912     ("l" sd/mark-line "line")
2913     ("u" er/mark-url "url")
2914     ("f" er/mark-defun "fun")
2915     ("n" er/mark-next-accessor "next")
2916
2917     ("x" exchange-point-and-mark "exchange")
2918
2919     ;; Search
2920     ;; higlight
2921
2922     ;; exit
2923     ("d" kill-region "delete" :exit t)
2924
2925     ("y" kill-ring-save "yank" :exit t)
2926     ("M-SPC" nil "quit" :exit t)
2927     ;; ("C-SPC" "quit" :exit t)
2928     ("q" deactivate-mark "quit" :exit t))
2929
2930   (global-set-key (kbd "M-SPC") (lambda ()
2931                                   (interactive)
2932                                   (set-mark-command nil)
2933                                   ;; (er/expand-region 1)
2934                                   (er/mark-word)
2935                                   (sd/expand-selected/body)))
2936 #+END_SRC
2937
2938 *** TODO make expand-region hydra work with lispy selected
2939 * key
2940 - passion
2941 - vision
2942 - mission
2943
2944 * TODO jump last change point
2945
2946 * TODO todolist
2947 ** rucket
2948 ** player video on iphone for 
2949 ** SICP