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