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