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