emacs - irony-mode hooks
[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 no :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 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
1743 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1744   ;; replace the `completion-at-point' and `complete-symbol' bindings in
1745   ;; irony-mode's buffers by irony-mode's function
1746   (defun my-irony-mode-hook ()
1747     (define-key irony-mode-map [remap completion-at-point]
1748       'irony-completion-at-point-async)
1749     (define-key irony-mode-map [remap complete-symbol]
1750       'irony-completion-at-point-async))
1751   (add-hook 'irony-mode-hook 'my-irony-mode-hook)
1752   (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
1753 #+END_SRC
1754
1755 irony-company
1756 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1757   (use-package company-irony
1758     :ensure t)
1759
1760   (eval-after-load 'company
1761     '(add-to-list 'company-backends 'company-irony))
1762
1763   (use-package flycheck-irony
1764     :ensure t)
1765
1766   (eval-after-load 'flycheck
1767     '(add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
1768 #+END_SRC
1769
1770 *** yasnippet
1771 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1772   (use-package yasnippet
1773     :ensure t)
1774 #+END_SRC
1775
1776 * Compile
1777 Set the environments vairables in compilation mode
1778 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1779   (use-package compile
1780     :commands compile
1781     :config
1782     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
1783     (setq compilation-auto-jump-to-first-error t)
1784     (setq compilation-auto-jump-to-next t)
1785     (setq compilation-scroll-output 'first-error))
1786
1787   ;; super-r to compile
1788   (with-eval-after-load "compile"
1789     (define-key compilation-mode-map (kbd "C-o") nil)
1790     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
1791     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
1792     (define-key compilation-mode-map (kbd "r") #'recompile))
1793 #+END_SRC
1794
1795 * Auto-Insert
1796 ** Enable auto-insert mode
1797 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1798   (auto-insert-mode t)
1799   (setq auto-insert-query nil)
1800 #+END_SRC
1801
1802 ** C++ Auto Insert
1803 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1804   (eval-after-load 'autoinsert
1805     '(define-auto-insert '("\\.cpp\\'" . "C++ skeleton")
1806        '(
1807          "Short description:"
1808          "/*"
1809          "\n * " (file-name-nondirectory (buffer-file-name))
1810          "\n */" > \n \n
1811          "#include <iostream>" \n
1812          "#include \""
1813          (file-name-sans-extension
1814           (file-name-nondirectory (buffer-file-name)))
1815          ".hpp\"" \n \n
1816          "using namespace std;" \n \n
1817          "int main ()"
1818          "\n{" \n 
1819          > _ \n
1820          "return 1;"
1821          "\n}" > \n
1822          )))
1823
1824   (eval-after-load 'autoinsert
1825     '(define-auto-insert '("\\.c\\'" . "C skeleton")
1826        '(
1827          "Short description:"
1828          "/*\n"
1829          " * " (file-name-nondirectory (buffer-file-name)) "\n"
1830          " */" > \n \n
1831          "#include <stdio.h>" \n
1832          "#include \""
1833          (file-name-sans-extension
1834           (file-name-nondirectory (buffer-file-name)))
1835          ".h\"" \n \n
1836          "int main ()\n"
1837          "{" \n
1838          > _ \n
1839          "return 1;\n"
1840          "}" > \n
1841          )))
1842 #+END_SRC
1843
1844 ** Python template
1845 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1846   (eval-after-load 'autoinsert
1847     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
1848        '(
1849          "Empty"
1850          "#import os,sys" \n
1851          \n \n
1852          )))
1853 #+END_SRC
1854
1855 ** Elisp 
1856 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
1857 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
1858 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1859   (eval-after-load 'autoinsert
1860     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
1861        '(
1862          "Short description: "
1863          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
1864          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
1865          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
1866          "\n
1867   ;; Copyright (C) " (format-time-string "%Y") "  "
1868          (getenv "ORGANIZATION") | (progn user-full-name) "
1869
1870   ;; Author: " (user-full-name)
1871          '(if (search-backward "&" (line-beginning-position) t)
1872               (replace-match (capitalize (user-login-name)) t t))
1873          '(end-of-line 1) " <" (progn user-mail-address) ">
1874   ;; Keywords: "
1875          '(require 'finder)
1876          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
1877          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
1878                            finder-known-keywords)
1879                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
1880                               finder-known-keywords
1881                               "\n"))
1882          ((let ((minibuffer-help-form v2))
1883             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
1884           str ", ") & -2 "
1885
1886   \;; This program is free software; you can redistribute it and/or modify
1887   \;; it under the terms of the GNU General Public License as published by
1888   \;; the Free Software Foundation, either version 3 of the License, or
1889   \;; (at your option) any later version.
1890
1891   \;; This program is distributed in the hope that it will be useful,
1892   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
1893   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1894   \;; GNU General Public License for more details.
1895
1896   \;; You should have received a copy of the GNU General Public License
1897   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
1898
1899   \;;; Commentary:
1900
1901   \;; " _ "
1902
1903   \;;; Code:
1904
1905
1906   \(provide '"
1907          (file-name-base)
1908          ")
1909   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
1910 #+END_SRC
1911
1912 ** Org file template
1913 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1914   (eval-after-load 'autoinsert
1915     '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
1916        '(
1917          "title: "
1918          "#+TITLE: " str (make-string 30 ?\s) > \n
1919          "#+AUTHOR: Peng Li\n"
1920          "#+EMAIL: seudut@gmail.com\n"
1921          "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
1922          > \n
1923          > _)))
1924 #+END_SRC
1925
1926 * Markdown mode
1927 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1928   (use-package markdown-mode
1929     :ensure t
1930     :commands (markdown-mode gfm-mode)
1931     :mode (("README\\.md\\'" . gfm-mode)
1932            ("\\.md\\'" . markdown-mode)
1933            ("\\.markdown\\'" . markdown-mode))
1934     :init (setq markdown-command "multimarkdown"))
1935 #+END_SRC
1936
1937 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1938   (use-package markdown-preview-eww
1939     :ensure t)
1940 #+END_SRC
1941
1942 * Gnus
1943 ** Gmail setting 
1944 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
1945 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1946   (setq user-mail-address "seudut@gmail.com"
1947         user-full-name "Peng Li")
1948
1949   (setq gnus-select-method
1950         '(nnimap "gmail"
1951                  (nnimap-address "imap.gmail.com")
1952                  (nnimap-server-port "imaps")
1953                  (nnimap-stream ssl)))
1954
1955   (setq smtpmail-smtp-service 587
1956         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
1957
1958   ;; Use gmail sending mail
1959   (setq message-send-mail-function 'smtpmail-send-it
1960         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
1961         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
1962         smtpmail-default-smtp-server "smtp.gmail.com"
1963         smtpmail-smtp-server "smtp.gmail.com"
1964         smtpmail-smtp-service 587
1965         starttls-use-gnutls t)
1966 #+END_SRC
1967
1968 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
1969 and =<PASSWORD>= with the password
1970 #+BEGIN_EXAMPLE
1971   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
1972   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
1973 #+END_EXAMPLE
1974
1975 Then Run =M-x gnus=
1976
1977 ** Group buffer
1978 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1979   (use-package gnus
1980     :init
1981     (setq gnus-permanently-visible-groups "\.*")
1982     :config
1983     (cond (window-system
1984            (setq custom-background-mode 'light)
1985            (defface my-group-face-1
1986              '((t (:foreground "Red" :bold t))) "First group face")
1987            (defface my-group-face-2
1988              '((t (:foreground "DarkSeaGreen4" :bold t)))
1989              "Second group face")
1990            (defface my-group-face-3
1991              '((t (:foreground "Green4" :bold t))) "Third group face")
1992            (defface my-group-face-4
1993              '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
1994            (defface my-group-face-5
1995              '((t (:foreground "Blue" :bold t))) "Fifth group face")))
1996     (setq gnus-group-highlight
1997           '(((> unread 200) . my-group-face-1)
1998             ((and (< level 3) (zerop unread)) . my-group-face-2)
1999             ((< level 3) . my-group-face-3)
2000             ((zerop unread) . my-group-face-4)
2001             (t . my-group-face-5))))
2002
2003
2004   ;; key-
2005   (add-hook 'gnus-group-mode-hook (lambda ()
2006                                     (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2007                                     (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2008                                     (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2009                                     (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2010 #+END_SRC
2011
2012 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2013   (setq gnus-fetch-old-headers 't)
2014
2015
2016
2017   (setq gnus-extract-address-components
2018         'mail-extract-address-components)
2019   ;; summary buffer 
2020   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2021   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2022                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2023                                       (604800 . "%a, %b %-d")
2024                                       (15778476 . "%b %-d")
2025                                       (t . "%Y-%m-%d")))
2026
2027   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
2028   (setq gnus-unread-mark ?\.)
2029   (setq gnus-use-correct-string-widths t)
2030
2031   ;; thread
2032   (setq gnus-thread-hide-subtree t)
2033
2034   ;; (with-eval-after-load 'gnus-summary-mode
2035   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
2036
2037   (add-hook 'gnus-summary-mode-hook (lambda ()
2038                                       (define-key gnus-summary-mode-map (kbd "C-o") nil)))
2039
2040
2041 #+END_SRC
2042
2043 ** Windows layout
2044 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
2045 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2046   (gnus-add-configuration
2047    '(summary
2048      (horizontal 1.0
2049                  (vertical 35
2050                            (group 1.0))
2051                  (vertical 1.0
2052                            (summary 1.0 poine)))))
2053
2054   (gnus-add-configuration
2055    '(article
2056      (horizontal 1.0
2057                  (vertical 35
2058                            (group 1.0))
2059                  (vertical 1.0
2060                            (summary 0.50 point)
2061                            (article 1.0)))))
2062
2063   (with-eval-after-load 'gnus-group-mode
2064     (gnus-group-select-group "INBOX"))
2065   ;; (add-hook 'gnus-group-mode-map (lambda ()
2066   ;;                               (gnus-group-select-group "INBOX")))
2067 #+END_SRC
2068
2069 * Gnu Plot
2070 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=
2071 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2072   (use-package gnuplot
2073     :ensure
2074     :init
2075     (setq gnuplot-help-xpm nil)
2076     (setq gnuplot-line-xpm nil)
2077     (setq gnuplot-region-xpm nil)
2078     (setq gnuplot-buffer-xpm nil)
2079     (setq gnuplot-doc-xpm nil))
2080 #+END_SRC
2081
2082 Use =gnuplot= on =Org-mode= file, see [[http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-gnuplot.html][ob-doc-gnuplot]]
2083 #+BEGIN_SRC gnuplot :exports code :file ./temp/file.png
2084   reset
2085
2086   set title "Putting it All Together"
2087
2088   set xlabel "X"
2089   set xrange [-8:8]
2090   set xtics -8,2,8
2091
2092
2093   set ylabel "Y"
2094   set yrange [-20:70]
2095   set ytics -20,10,70
2096
2097   f(x) = x**2
2098   g(x) = x**3
2099   h(x) = 10*sqrt(abs(x))
2100
2101   plot f(x) w lp lw 1, g(x) w p lw 2, h(x) w l lw 3
2102 #+END_SRC
2103
2104 #+RESULTS:
2105 [[file:./temp/file.png]]
2106 * Ediff
2107 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2108   (with-eval-after-load 'ediff
2109     (setq ediff-split-window-function 'split-window-horizontally)
2110     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
2111     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
2112     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
2113     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
2114 #+END_SRC
2115
2116 * Entertainment
2117 ** GnoGo
2118 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
2119 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2120   (use-package gnugo
2121     :ensure t
2122     :defer t
2123     :init
2124     (require 'gnugo-imgen)
2125     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
2126     (add-hook 'gnugo-start-game-hook '(lambda ()
2127                                         (gnugo-image-display-mode)
2128                                         (gnugo-grid-mode)))
2129     :config
2130     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
2131 #+END_SRC
2132
2133 ** Emms
2134 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
2135 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2136   (use-package emms
2137     :ensure t
2138     :init
2139     (setq emms-directory (concat sd-temp-directory "emms"))
2140     (setq emms-source-file-default-directory "~/Music/")
2141     :config
2142     (emms-standard)
2143     (emms-default-players)
2144     (define-emms-simple-player mplayer '(file url)
2145       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
2146                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
2147                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
2148                     ".m4a" ".flv" ".ogv" ".pls"))
2149       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
2150     (emms-history-load))
2151 #+END_SRC
2152
2153 * Dictionary
2154 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2155   (use-package bing-dict
2156     :ensure t
2157     :init
2158     (global-set-key (kbd "s-d") 'bing-dict-brief)
2159     :commands (bing-dict-brief))
2160 #+END_SRC
2161
2162 * Key Bindings
2163 Here are some global key bindings for basic editting
2164 ** Esc in minibuffer
2165 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
2166 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2167   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
2168   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
2169   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
2170   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
2171   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
2172   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
2173   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
2174   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
2175   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
2176
2177   ;; Also map s-h same as C-g
2178   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
2179 #+END_SRC
2180
2181 ** Project operations - =super=
2182 *** Projectile
2183 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2184   (use-package projectile
2185     :ensure t
2186     :init
2187     (setq projectile-enable-caching t)
2188     (setq projectile-switch-project-action 'projectile-dired)
2189     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
2190     :config
2191     (add-to-list 'projectile-globally-ignored-files "GTAGS")
2192     (projectile-global-mode t))
2193
2194   (use-package persp-projectile
2195     :ensure t
2196     :config
2197     (persp-mode)
2198     :bind
2199     (:map projectile-mode-map
2200           ("s-t" . projectile-persp-switch-project)))
2201
2202   ;; projectile-find-file
2203   ;; projectile-switch-buffer
2204   ;; projectile-find-file-other-window
2205 #+END_SRC
2206
2207 *** project config =super= keybindings
2208 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2209   ;; (global-set-key (kbd "s-h") 'keyboard-quit)
2210   ;; (global-set-key (kbd "s-j") 'ido-switch-buffer)
2211   ;; (global-set-key (kbd "s-k") 'ido-find-file)
2212   ;; (global-set-key (kbd "s-l") 'sd/delete-current-window)
2213   ;; s-l  -->  goto-line
2214   ;; (global-set-key (kbd "s-/") 'swiper)
2215   ;; s-;  -->
2216   ;; s-'  -->  'next-multiframe-window
2217   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
2218
2219   (global-set-key (kbd "s-f") 'projectile-find-file)
2220   (global-set-key (kbd "s-`") 'mode-line-other-buffer)
2221
2222   (global-set-key (kbd "s-n") 'persp-next)
2223   (global-set-key (kbd "s-p") 'persp-prev)
2224   (global-set-key (kbd "s-;") 'persp-switch-last)
2225
2226   (global-set-key (kbd "s-=") 'text-scale-increase)
2227   (global-set-key (kbd "s--") 'text-scale-decrease)
2228
2229   ;; (global-set-key (kbd "s-u") 'undo-tree-visualize)
2230
2231
2232   ;; someothers default mapping on super (command) key
2233   ;; s-s save-buffer
2234   ;; s-k kill-this-buffer
2235
2236
2237   ;; s-h  -->  ns-do-hide-emacs
2238   ;; s-j  -->  ido-switch-buffer  +
2239   ;; s-k  -->  kill-this-buffer
2240   ;; s-l  -->  goto-line
2241   ;; s-;  -->  undefined
2242   ;; s-'  -->  next-multiframe-window
2243   ;; s-ret --> toggle-frame-fullscreen +
2244
2245   ;; s-y  -->  ns-paste-secondary
2246   ;; s-u  -->  revert-buffer
2247   ;; s-i  -->  undefined - but used for iterm globally
2248   ;; s-o  -->  used for emacs globally
2249   ;; s-p  -->  projectile-persp-switch-project  +  
2250   ;; s-[  -->  next-buffer  +    
2251   ;; s-]  -->  previous-buffer +
2252
2253   ;; s-0  -->  undefined
2254   ;; s-9  -->  undefined
2255   ;; s-8  -->  undefined
2256   ;; s-7  -->  undefined
2257   ;; s-6  -->  undefined
2258   ;; s--  -->  center-line
2259   ;; s-=  -->  undefined
2260
2261   ;; s-n  -->  make-frame
2262   ;; s-m  -->  iconify-frame
2263   ;; s-b  -->  undefined
2264   ;; s-,  -->  customize
2265   ;; s-.  -->  undefined
2266   ;; s-/  -->  undefined
2267
2268   ;; s-g  -->  isearch-repeat-forward
2269   ;; s-f  -->  projectile-find-file   +
2270   ;; s-d  -->  isearch-repeat-background
2271   ;; s-s  -->  save-buffer
2272   ;; s-a  -->  make-whole-buffer
2273
2274   ;; s-b  -->  undefined
2275   ;; s-v  -->  yank
2276   ;; s-c  -->  ns-copy-including-secondary
2277
2278   ;; s-t  -->  ns-popup-font-panel
2279   ;; s-r  -->  undefined
2280   ;; s-e  -->  isearch-yanqk-kill
2281   ;; s-w  -->  delete-frame
2282   ;; s-q  -->  same-buffers-kill-emacs
2283
2284   ;; s-`  -->  other-frame
2285 #+END_SRC
2286
2287 ** Windown & Buffer - =C-o=
2288 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
2289 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
2290 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2291   (winner-mode 1)
2292
2293   (defun sd/delete-current-window ()
2294     (interactive)
2295     (if (> (length (window-list)) 1)
2296         (delete-window)
2297       (message "Only one Windows now!")))
2298
2299   (defun sd/toggle-max-windows ()
2300     "Set maximize current if there are multiple windows, if only
2301   one window, window undo"
2302     (interactive)
2303     (if (equal  (length (window-list)) 1)
2304         (winner-undo)
2305       (delete-other-windows)))
2306
2307   (defhydra sd/hydra-window (:color red :columns nil)
2308     "Window"
2309     ;; windows split
2310     ("h" windmove-left nil :exit t)
2311     ("j" windmove-down nil :exit t)
2312     ("k" windmove-up nil :exit t)
2313     ("l" windmove-right nil :exit t)
2314     ("H" hydra-move-splitter-left nil)
2315     ("J" hydra-move-splitter-down nil)
2316     ("K" hydra-move-splitter-up nil)
2317     ("L" hydra-move-splitter-right nil)
2318     ("v" (lambda ()
2319            (interactive)
2320            (split-window-right)
2321            (windmove-right))
2322      "vert" :exit t)
2323     ("x" (lambda ()
2324            (interactive)
2325            (split-window-below)
2326            (windmove-down))
2327      "horz" :exit t)
2328
2329     ;; buffer / windows switch
2330     ("o" sd/toggle-max-windows "one" :exit t)
2331     ("C-k" sd/delete-current-window "del" :exit t)
2332     ("D" (lambda ()
2333              (interactive)
2334              (kill-buffer)
2335              (sd/delete-current-window))
2336      "kill" :exit t)
2337     ("'" other-window "other" :exit t)
2338     ;; ("a" ace-window "ace")
2339     ("s" ace-swap-window "swap")
2340     ;; ("i" ace-maximize-window "ace-one" :exit t)
2341
2342     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) "undo")
2343     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) "redo")
2344
2345     ;; ibuffer, dired, eshell, bookmarks
2346     ;; ("d" ace-delete-window "ace-one" :exit t)
2347     ("C-o" ido-switch-buffer nil :exit t)
2348     ("d" sd/project-or-dired-jump nil :exit t)
2349     ("b" ibuffer nil :exit t)
2350     ("e" eshell nil :exit t)
2351     ("m" bookmark-jump-other-window nil :exit t)
2352     ("M" bookmark-set nil :exit t)
2353     ("g" magit-status nil :exit t)
2354     ("p" paradox-list-packages nil :exit t)
2355
2356     ;; quit
2357     ("q" nil "cancel")
2358     ("<ESC>" nil)
2359     ("C-h" nil nil :exit t)
2360     ("C-j" nil nil :exit t)
2361     ;; ("C-k" nil :exit t)
2362     ("C-l" nil nil :exit t)
2363     ("C-;" nil nil :exit t)
2364     ("n" nil nil :exit t)
2365     ("[" nil nil :exit t)
2366     ("]" nil nil :exit t)
2367     ("f" nil))
2368
2369   (global-unset-key (kbd "C-o"))
2370   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
2371
2372   (defun sd/project-or-dired-jump ()
2373     "If under project, jump to the root directory, otherwise
2374   jump to dired of current file"
2375     (interactive)
2376     (if (projectile-project-p)
2377         (projectile-dired)
2378       (dired-jump)))
2379 #+END_SRC
2380
2381 ** Motion
2382 - =C-M-=
2383 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
2384 *** Command Arguments, numeric argumens
2385 =C-u 4= same as =C-4=, =M-4=
2386 *** Basic movement
2387 moving by line / word / 
2388 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
2389 =C-a=, =C-e=
2390 =M-m= (move first non-whitespace on this line) 
2391 =M-}=, =M-{=, Move forward end of paragraph
2392 =M-a=, =M-e=,  beginning / end of sentence
2393 =C-M-a=, =C-M-e=, move begining of defun
2394 =C-x ]=, =C-x [=, forward/backward one page
2395 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
2396 =M-<=, =M->=, beginning/end of buffer
2397 =M-r=, Repositiong point
2398
2399 *** Moving by S-expression / List
2400 *** Marks
2401 =C-<SPC>= set marks toggle the region
2402 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
2403 =C-x C-x= Exchanges the point and mark.
2404
2405 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
2406 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2407   (defun push-mark-no-activate ()
2408     "Pushes `point' to `mark-ring' and does not activate the region
2409      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
2410     (interactive)
2411     (push-mark (point) t nil)
2412     (message "Pushed mark to ring"))
2413
2414   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
2415
2416   (defun jump-to-mark ()
2417     "Jumps to the local mark, respecting the `mark-ring' order.
2418     This is the same as using \\[set-mark-command] with the prefix argument."
2419     (interactive)
2420     (set-mark-command 1))
2421
2422   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
2423
2424   (defun exchange-point-and-mark-no-activate ()
2425     "Identical to \\[exchange-point-and-mark] but will not activate the region."
2426     (interactive)
2427     (exchange-point-and-mark)
2428     (deactivate-mark nil))
2429
2430   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
2431 #+END_SRC
2432
2433 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
2434 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
2435 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
2436 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2437   (setq mark-ring-max 50)
2438
2439   (use-package helm
2440     :ensure t
2441     :init
2442     (global-set-key (kbd "M-`") #'helm-mark-ring))
2443
2444   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
2445 #+END_SRC
2446
2447 =M-h= marks the next paragraph
2448 =C-x h= marks the whole buffer
2449 =C-M-h= marks the next defun
2450 =C-x C-p= marks the next page
2451 *** Registers
2452 Registers can save text, position, rectangles, file and configuration and other things.
2453 Here for movement, we can use register to save/jump position
2454 =C-x r SPC= store point in register
2455 =C-x r j= jump to register
2456 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2457   (use-package list-register
2458     :ensure t)
2459 #+END_SRC
2460
2461 *** Bookmarks
2462 As I would like use bookmakr for different buffer/files. to help to swith
2463 different buffer/file quickly. this setting is in Windows/buffer node
2464 =C-x r m= set a bookmarks
2465 =C-x r l= list bookmarks
2466 =C-x r b= jump to bookmarks
2467
2468 *** Search
2469 Search, replace and hightlight will in later paragraph
2470 *** =Avy= for easy motion
2471 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2472   (use-package avy
2473     :ensure t
2474     :config
2475     (avy-setup-default))
2476
2477   (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
2478   (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
2479   (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
2480   (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
2481
2482   (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
2483   (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
2484
2485   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2486   (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
2487   (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
2488
2489   ;; ;; will delete above 
2490   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
2491   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
2492   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
2493   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
2494   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
2495   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
2496   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
2497 #+END_SRC
2498
2499 *** =Imenu= goto tag
2500 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2501   (global-set-key (kbd "M-i") #'counsel-imenu)
2502   ;; (global-set-key (kbd "M-i") #'imenu)
2503 #+END_SRC
2504
2505 *** Go-to line
2506 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2507   (global-set-key (kbd "M-l") 'goto-line)
2508 #+END_SRC
2509
2510 ** Edit
2511 *** basic editting
2512 - cut, yank, =C-w=, =C-y=
2513 - save, revert
2514 - undo, redo - undo-tree
2515 - select, expand-region
2516 - spell check, flyspell
2517
2518 *** Kill ring
2519 =helm-show-kill-ring=
2520 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2521   (setq kill-ring-max 100)                ; default is 60p
2522
2523   (use-package helm
2524     :ensure t
2525     :init
2526     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
2527 #+END_SRC
2528
2529 *** undo-tree
2530 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2531   (use-package undo-tree
2532     :ensure t
2533     :config
2534     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
2535     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
2536     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
2537     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
2538     (global-undo-tree-mode 1))
2539
2540   (global-set-key (kbd "s-u") 'undo-tree-visualize)
2541 #+END_SRC
2542
2543 *** flyspell
2544 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
2545 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2546   (setenv "DICPATH" "/usr/local/share/hunspell")
2547
2548   (when (executable-find "hunspell")
2549     (setq-default ispell-program-name "hunspell")
2550     (setq ispell-really-hunspell t))
2551
2552   ;; (defun text-mode-hook-setup ()
2553   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
2554   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
2555   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
2556   ;; (add-hook 'text-mode-hook 'flyspell-mode)
2557
2558   ;; enable flyspell check on comments and strings in progmamming modes
2559   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
2560
2561   ;; I don't use the default mappings
2562   (with-eval-after-load 'flyspell
2563     (define-key flyspell-mode-map (kbd "C-;") nil)
2564     (define-key flyspell-mode-map (kbd "C-,") nil)
2565     (define-key flyspell-mode-map (kbd "C-.") nil))
2566 #+END_SRC
2567
2568 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]]
2569 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2570   ;; NO spell check for embedded snippets
2571   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
2572     (let ((rlt ad-return-value)
2573           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
2574           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
2575           old-flag
2576           b e)
2577       (when ad-return-value
2578         (save-excursion
2579           (setq old-flag case-fold-search)
2580           (setq case-fold-search t)
2581           (setq b (re-search-backward begin-regexp nil t))
2582           (if b (setq e (re-search-forward end-regexp nil t)))
2583           (setq case-fold-search old-flag))
2584         (if (and b e (< (point) e)) (setq rlt nil)))
2585       (setq ad-return-value rlt)))
2586 #+END_SRC
2587
2588 ** Search & Replace / hightlight =M-s=
2589 *** isearch
2590 =C-s=, =C-r=, 
2591 =C-w= add word at point to search string, 
2592 =M-%= query replace
2593 =C-M-y= add character at point to search string
2594 =M-s C-e= add reset of line at point
2595 =C-y= yank from clipboard to search string
2596 =M-n=, =M-p=, history
2597 =C-M-i= complete search string
2598 set the isearch history size, the default is only =16=
2599 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2600   (setq history-length 5000)
2601   (setq regexp-search-ring-max 1000)
2602   (setq search-ring-max 1000)
2603
2604   ;; when search a word or a symbol , also add the word into regexp-search-ring
2605   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
2606     "Add search-ring to regexp-search-ring"
2607     (unless regexp
2608       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
2609 #+END_SRC
2610
2611 *** =M-s= prefix
2612 use the prefix =M-s= for searching in buffers
2613 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2614   (defun sd/make-keymap (key bindings)
2615     (setq keymap (make-sparse-keymap))
2616     (dolist (binding bindings)
2617       (define-key keymap (car binding) (cdr binding)))
2618     (global-set-key key keymap))
2619
2620   ;; (sd/make-keymap "\M-s"
2621   ;;                 '(("w" . save-buffer)
2622   ;;                   ;; ("\M-w" . save-buffer)
2623   ;;                   ("e" . revert-buffer)
2624   ;;                   ("s" . isearch-forward-regexp)
2625   ;;                   ("\M-s" . isearch-forward-regexp)
2626   ;;                   ("r" . isearch-backward-regexp)
2627   ;;                   ("." . isearch-forward-symbol-at-point)
2628   ;;                   ("o" . occur)
2629   ;;                   ;; ("h" . highlight-symbol-at-point)
2630   ;;                   ("h" . highlight-symbol)
2631   ;;                   ("m" . highlight-regexp)
2632   ;;                   ("l" . highlight-lines-matching-regexp)
2633   ;;                   ("M" . unhighlight-regexp)
2634   ;;                   ("f" . keyboard-quit)
2635   ;;                   ("q" . keyboard-quit)))
2636 #+END_SRC
2637
2638 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2639   (use-package highlight-symbol
2640     :ensure t)
2641
2642   (defhydra sd/search-replace (:color red :columns nil)
2643     "Search"
2644     ("w" save-buffer "save" :exit t)
2645     ("e" revert-buffer "revert" :exit t)
2646     ("u" undo-tree-visualize "undo" :exit t)
2647     ("s" isearch-forward-regexp "s-search" :exit t)
2648     ("M-s" isearch-forward-regexp "s-search" :exit t)
2649     ("r" isearch-backward-regexp "r-search" :exit t)
2650     ("." isearch-forward-symbol-at-point "search point" :exit t)
2651     ("/" swiper "swiper" :exit t)
2652     ("o" occur "occur" :exit t)
2653     ("h" highlight-symbol "higlight" :exit t)
2654     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
2655     ("m" highlight-regexp "higlight" :exit t)
2656     ("M" unhighlight-regexp "unhiglight" :exit t)
2657     ("q" nil "quit")
2658     ("f" nil))
2659
2660   (global-unset-key (kbd "M-s"))
2661   (global-set-key (kbd "M-s") 'sd/search-replace/body)
2662
2663
2664   ;; search and replace and highlight
2665   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
2666   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
2667   (global-set-key (kbd "s-[") 'highlight-symbol-next)
2668   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
2669   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
2670 #+END_SRC
2671
2672 *** Occur
2673 Occur search key bindings
2674 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2675   (defun sd/occur-keys ()
2676     "My key bindings in occur-mode"
2677     (interactive)
2678     (switch-to-buffer-other-window "*Occur*")
2679     (define-key occur-mode-map (kbd "C-o") nil)
2680     (define-key occur-mode-map (kbd "C-n") (lambda ()
2681                                              (interactive)
2682                                              (occur-next)
2683                                              (occur-mode-goto-occurrence-other-window)
2684                                              (recenter)
2685                                              (other-window 1)))
2686     (define-key occur-mode-map (kbd "C-p") (lambda ()
2687                                              (interactive)
2688                                              (occur-prev)
2689                                              (occur-mode-goto-occurrence-other-window)
2690                                              (recenter)
2691                                              (other-window 1))))
2692
2693   (add-hook 'occur-hook #'sd/occur-keys)
2694
2695   (use-package color-moccur
2696     :ensure t
2697     :commands (isearch-moccur isearch-all)
2698     :init
2699     (setq isearch-lazy-highlight t)
2700     :config
2701     (use-package moccur-edit))
2702 #+END_SRC
2703
2704 *** Swiper
2705 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
2706 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2707   (use-package swiper
2708     :ensure t
2709     :init
2710     (setq ivy-use-virtual-buffers t)
2711     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
2712     :config
2713     (ivy-mode)
2714     (global-set-key (kbd "s-/") 'swiper)
2715     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
2716     (define-key swiper-map (kbd "C-.") (lambda ()
2717                                          (interactive)
2718                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
2719     (define-key swiper-map (kbd "M-.") (lambda ()
2720                                          (interactive)
2721                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
2722 #+END_SRC
2723
2724 ** Expand region map
2725 *** Install =expand-region=
2726 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2727   (use-package expand-region
2728     :ensure t
2729     :config
2730     ;; (global-set-key (kbd "C-=") 'er/expand-region)
2731     )
2732 #+END_SRC
2733
2734 *** Add a =hydra= map for =expand-region= operations
2735 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2736   (defun sd/mark-line ()
2737     "Mark current line without whitespace beginning"
2738     (interactive)
2739     (back-to-indentation)
2740     (set-mark (line-end-position)))
2741
2742   (defhydra sd/expand-selected (:color red :columns nil
2743                                        :post (deactivate-mark)
2744                                        )
2745     "Selected"
2746     ;; select
2747     ;; ("e"  er/expand-region "+")
2748     ("SPC" er/expand-region "+")
2749     ;; ("c"  er/contract-region "-")
2750     ("S-SPC" er/contract-region "-")
2751     ("r" (lambda ()
2752            (interactive)
2753            (er/contract-region 0))
2754      "reset")
2755
2756     ("i'" er/mark-inside-quotes "in")
2757     ("i\"" er/mark-inside-quotes nil)
2758     ("o'" er/mark-outside-quotes "out")
2759     ("o\"" er/mark-outside-quotes nil)
2760
2761     ("i{" er/mark-inside-pairs nil)
2762     ("i(" er/mark-inside-pairs nil)
2763     ("o{" er/mark-inside-pairs nil)
2764     ("o(" er/mark-inside-pairs nil)
2765
2766     ("p" er/mark-paragraph "paragraph")
2767
2768     ("l" sd/mark-line "line")
2769     ("u" er/mark-url "url")
2770     ("f" er/mark-defun "fun")
2771     ("n" er/mark-next-accessor "next")
2772
2773     ("x" exchange-point-and-mark "exchange")
2774
2775     ;; Search
2776     ;; higlight
2777
2778     ;; exit
2779     ("d" kill-region "delete" :exit t)
2780
2781     ("y" kill-ring-save "yank" :exit t)
2782     ("M-SPC" nil "quit" :exit t)
2783     ;; ("C-SPC" "quit" :exit t)
2784     ("q" deactivate-mark "quit" :exit t))
2785
2786   (global-set-key (kbd "M-SPC") (lambda ()
2787                                   (interactive)
2788                                   (set-mark-command nil)
2789                                   ;; (er/expand-region 1)
2790                                   (er/mark-word)
2791                                   (sd/expand-selected/body)))
2792 #+END_SRC
2793
2794 *** TODO make expand-region hydra work with lispy selected
2795
2796 * TODO Convert ASCII to key
2797 ** map =function-key-map= [[http://academic.evergreen.edu/projects/biophysics/technotes/program/ascii_ctrl.htm][ascii_ctrl]]
2798 new file =C-x C-f C-f=
2799
2800 ** write color syntax for =Man-mode=
2801
2802 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2803   (font-lock-add-keywords 'perl-mode '(("\\(|\\w+?\\(,\\w+?\\)?|\\)" 1 'py-builtins-face)))
2804 #+END_SRC
2805
2806 * TODO jump last change point
2807 * TODO emms mode-line
2808
2809 * =C-u C-h a= search funtions 
2810 =apropos-command= 
2811
2812 * key
2813 - passion
2814 - vision
2815 - mission
2816
2817 * M prefix
2818 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2819
2820   ;; M-h - mark-paragraph
2821   ;; M-j - new line indent
2822   ;; M-k - kill-sentence
2823   ;; M-l - downcase words     ====== goto-line
2824   ;; M-; - comments
2825   ;; M-'- abbrev-prefix-mark  =======
2826   ;; M-RET none                ======
2827
2828   ;; M-y - yank
2829   ;; M-u - upcase word
2830   ;; M-i -                 ====== imenu
2831   ;; M-o             ====== prefix
2832   ;; M-p
2833   ;; M-[                   =====
2834   ;; M-]              ========
2835   ;; M-\   deleter horizontal space =====
2836
2837   ;; M-n 
2838   ;; M-m ---- indent
2839   ;; M-, --- mark stack====== =
2840   ;; M-. lisp-goto-symboo, find definitation
2841
2842   ;; M-a 
2843   ;; M-s ===== 
2844   ;; M-d
2845   ;; M-f
2846   ;; M-g - prefix
2847
2848   ;; M-q - lisp fill, fill paragraph
2849   ;; M-w 
2850   ;; M-e
2851   ;; M-r  - rePositioning 
2852   ;; M-t transpose word 
2853
2854   ;; M-z zap-to-char
2855   ;; M-x
2856   ;; M-c  capitalize-word
2857   ;; M-v 
2858   ;; M-b 
2859 #+END_SRC
2860