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