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