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