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