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