emacs - improve
[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 Set system PATH and emacs exec path
12 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
13   (setenv "PATH" (concat (getenv "PATH")
14                          ":" "/usr/local/bin"
15                          ":" "/Library/TeX/texbin"))
16   (setq exec-path (append exec-path '("/usr/local/bin")))
17   (setq exec-path (append exec-path '("/Library/TeX/texbin/")))
18 #+END_SRC
19
20 ** Package Initialization
21 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
22   (require 'package)
23
24   (setq package-archives '(("mepla" . "http://melpa.milkbox.net/packages/")
25                            ("gnu" . "http://elpa.gnu.org/packages/")
26                            ("org" . "http://orgmode.org/elpa/")))
27
28   (package-initialize)
29 #+END_SRC       
30
31 ** My constant
32 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
33   (defconst my-name "Peng Li")
34   (defconst my-email "seudut@gmail.com")
35   (defconst MY-EMACS-DIR (concat (getenv "HOME") "/.emacs.d"))
36   (defconst MY-EMACS-TMP (concat MY-EMACS-DIR "/temp"))
37   (unless (file-exists-p MY-EMACS-TMP)
38     (mkdir MY-EMACS-TMP))
39 #+END_SRC
40
41 ** General Setting
42 *** scroll bar, tool-bar and menu-bar
43 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
44   (if (display-graphic-p)
45       (progn
46         (scroll-bar-mode 0)
47         (tool-bar-mode 0)
48         (menu-bar-mode 1))
49     (menu-bar-mode 0))
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
59   ;;supress the redefined warning at startup
60   (setq ad-redefinition-action 'accept)
61
62   (setq scroll-step 1)
63   (setq scroll-margin 5)
64
65   (when (display-graphic-p)
66     (fringe-mode '(0 . 0)))
67
68   (blink-cursor-mode 0)
69   ;; (setq-default indicate-empty-lines t)
70   ;; (setq-default indicate-abuffer-boundaries 'right)
71 #+END_SRC
72
73 *** Custom file 
74 #+BEGIN_SRC emacs-lisp :tangle yes :results silent 
75   (setq custom-file "~/.emacs.d/custom.el")
76   (if (file-exists-p custom-file)
77       (load custom-file))
78 #+END_SRC
79
80 *** Switch the focus to help window when it appears
81 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
82   (setq help-window-select t)
83 #+END_SRC
84
85 *** Set default window size
86 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
87   (setq initial-frame-alist
88         '((width . 120)
89           (height . 50)))
90
91   ;; (setq-default indicate-empty-lines t)
92 #+END_SRC
93
94 *** Stop auto save
95 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
96   (setq auto-save-default nil)
97
98   ;; restore last session
99   ;; (desktop-save-mode t)
100 #+END_SRC
101
102 *** temp folder
103 Make a temp directory for all cache/history files
104 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
105   (defconst sd-temp-directory
106     (file-name-as-directory "~/.emacs.d/temp"))
107
108   (unless (file-exists-p sd-temp-directory)
109     (mkdir sd-temp-directory))
110 #+END_SRC
111
112 *** Save minibuffer history
113 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
114   (setq savehist-file (concat sd-temp-directory "history"))
115   (setq history-length 1000)
116   (setq savehist-additional-variables '(kill-ring search-ring regexp-search-ring))
117   (savehist-mode 1)
118
119   ;; set temp file path for recentf and auto-save
120   (setq recentf-save-file (concat sd-temp-directory "recentf"))
121   (setq recentf-max-saved-items 1000)
122   (setq auto-save-list-file-prefix (concat sd-temp-directory "auto-save-list/.saves-"))
123 #+END_SRC
124
125 *** Max file size
126 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
127   (setq large-file-warning-threshold nil)
128 #+END_SRC
129
130 *** Xterm mode
131 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
132   (unless (display-graphic-p)
133     (xterm-mouse-mode))
134 #+END_SRC
135 * Package Management Tools
136 ** Use-package
137 Using [[https://github.com/jwiegley/use-package][use-package]] to manage emacs packages
138 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
139   (unless (package-installed-p 'use-package)
140     (package-refresh-contents)
141     (package-install 'use-package))
142
143   (require 'use-package)
144 #+END_SRC
145
146 ** El-get
147 [[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. 
148 Check out [[http://tapoueh.org/emacs/el-get.html][el-get]].
149 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
150   (use-package el-get
151     :ensure t
152     :init
153     (add-to-list 'load-path "~/.emacs.d/el-get"))
154 #+END_SRC
155
156 ** paradox
157 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
158   (use-package paradox
159     :ensure t)
160 #+END_SRC
161
162 * Color and Fonts Settings
163 ** highlight current line
164 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
165   ;; (global-hl-line-mode)
166   ;; don't want high light current line in eshell/term mode
167   (add-hook 'prog-mode-hook 'hl-line-mode)
168   (add-hook 'text-mode-hook 'hl-line-mode)
169   (add-hook 'dired-mode-hook 'hl-line-mode)
170
171   ;; only highlight selected window
172   (setq hl-line-sticky-flag nil)
173
174   (setq-default fill-column 120)
175   (add-hook 'text-mode-hook 'turn-on-auto-fill)
176 #+END_SRC
177
178 ** Smart Comments
179 [[https://github.com/paldepind/smart-comment][smart-comments]]
180 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
181   (use-package smart-comment
182     :ensure t
183     :bind ("M-;" . smart-conmment))
184 #+END_SRC
185
186 ** Font Setting
187 *** syntax highlighting
188 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
189   (global-font-lock-mode 1)
190 #+END_SRC
191
192 *** [[https://github.com/i-tu/Hasklig][Hasklig]] and Source Code Pro, defined fonts family
193 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
194   (if window-system
195       (defvar sd/fixed-font-family
196         (cond ((x-list-fonts "Hasklig")         "Hasklig")
197               ((x-list-fonts "Source Code Pro") "Source Code Pro:weight=light") ;; weigth=light
198               ((x-list-fonts "Anonymous Pro")   "Anonymous Pro")
199               ((x-list-fonts "M+ 1mn")          "M+ 1mn"))
200         "The fixed width font based on what is installed, `nil' if not defined."))
201 #+END_SRC
202
203 Setting the fonts alignment issue
204 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
205   (if window-system
206       (when sd/fixed-font-family
207         (set-frame-font sd/fixed-font-family)
208         (set-face-attribute 'default nil :font sd/fixed-font-family :height 120)
209         (set-face-font 'default sd/fixed-font-family)))
210 #+END_SRC
211
212 *** Chinese fonts
213 Fix the font alignment issue when both Chinese and English hybird in org-mode table. Refer [[http://coldnew.github.io/blog/2013/11-16_d2f3a/][解決 org-mode 表格內中英文對齊的問題]]
214 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
215   (defvar emacs-english-font "Source Code Pro" "The font name of English.")
216
217   (defvar emacs-cjk-font "STHeiti" "The font name for CJK.")
218
219   (defvar emacs-font-size-pair '(13 . 16) "Default font size pair for (english . chinese)")
220
221   (defvar emacs-font-size-pair-list
222     '(( 5 .  6) (10 . 12)
223       (11 . 14) (12 . 14)
224       (13 . 16) (14 . 16) (15 . 18) (16 . 20) (17 . 20)
225       (18 . 22) (19 . 22) (20 . 24) (21 . 26)
226       (24 . 28) (26 . 32) (28 . 34)
227       (30 . 36) (34 . 40) (36 . 44))
228     "This list is used to store matching (englis . chinese) font-size.")
229
230   (defun font-exist-p (fontname)
231     "Test if this font is exist or not."
232     (if (or (not fontname) (string= fontname ""))
233         nil
234       (if (not (x-list-fonts fontname)) nil t)))
235
236   (defun set-font (english chinese size-pair)
237     "Setup emacs English and Chinese font on x window-system."
238     (if (font-exist-p english)
239         (set-frame-font (format "%s:pixelsize=%d" english (car size-pair)) t))
240     (if (font-exist-p chinese)
241         (dolist (charset '(han cjk-misc) ;; '(kana han symbol cjk-misc bopomofo)
242                  )
243           (set-fontset-font (frame-parameter nil 'font) charset
244                             (font-spec :family chinese :size (cdr size-pair))))))
245
246   (defun emacs-step-font-size (step)
247     "Increase/Decrease emacs's font size."
248     (let ((scale-steps emacs-font-size-pair-list))
249       (if (< step 0) (setq scale-steps (reverse scale-steps)))
250       (setq emacs-font-size-pair
251             (or (cadr (member emacs-font-size-pair scale-steps))
252                 emacs-font-size-pair))
253       (when emacs-font-size-pair
254         (message "emacs font size set to %.1f" (car emacs-font-size-pair))
255         (set-font emacs-english-font emacs-cjk-font emacs-font-size-pair))))
256
257   (defun increase-emacs-font-size ()
258     "Decrease emacs's font-size acording emacs-font-size-pair-list."
259     (interactive) (emacs-step-font-size 1))
260
261   (defun decrease-emacs-font-size ()
262     "Increase emacs's font-size acording emacs-font-size-pair-list."
263     (interactive) (emacs-step-font-size -1))
264 #+END_SRC
265
266
267 ** Color Theme
268
269 Loading theme should be after all required loaded, refere [[https://github.com/jwiegley/use-package][:defer]] in =use-package=
270
271 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
272   (setq vc-follow-symlinks t)
273   (use-package molokai-theme
274     :ensure t)
275
276   (use-package color-theme
277     :ensure t
278     :init (require 'color-theme)
279     :config (use-package color-theme-sanityinc-tomorrow
280               :ensure t
281               :no-require t
282               :config
283               ;; (load-theme 'sanityinc-tomorrow-bright t)
284               (load-theme 'molokai t)
285               ))
286
287   ;(eval-after-load 'color-theme
288   ;  (load-theme 'sanityinc-tomorrow-bright t))
289
290 #+END_SRC
291
292 Change the Org-mode colors 
293
294 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
295
296   (defun org-src-color-blocks-light ()
297     "Colors the block headers and footers to make them stand out more for lighter themes"
298     (interactive)
299     (custom-set-faces
300      '(org-block-begin-line
301       ((t (:underline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
302      '(org-block-background
303        ((t (:background "#FFFFEA"))))
304      '(org-block
305        ((t (:background "#FFFFEA"))))
306      '(org-block-end-line
307        ((t (:overline "#A7A6AA" :foreground "#008ED1" :background "#EAEAFF"))))
308
309      '(mode-line-buffer-id ((t (:foreground "#005000" :bold t))))
310      '(which-func ((t (:foreground "#008000"))))))
311
312   (defun org-src-color-blocks-dark ()
313     "Colors the block headers and footers to make them stand out more for dark themes"
314     (interactive)
315     (custom-set-faces
316      '(org-block-begin-line
317        ((t (:foreground "#008ED1" :background "#002E41"))))
318      '(org-block-background
319        ((t (:background "#000000"))))
320      '(org-block
321        ((t (:background "#000000"))))
322      '(org-block-end-line
323        ((t (:foreground "#008ED1" :background "#002E41"))))
324
325      '(mode-line-buffer-id ((t (:foreground "black" :bold t))))
326      '(which-func ((t (:foreground "green"))))))
327
328   (org-src-color-blocks-dark)
329
330 #+END_SRC
331
332 improve color for org-mode
333 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
334   (deftheme ha/org-theme "Sub-theme to beautify org mode")
335
336   (if window-system
337       (defvar sd/variable-font-tuple
338         (cond ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))
339               ((x-list-fonts "Lucida Grande")   '(:font "Lucida Grande"))
340               ((x-list-fonts "Verdana")         '(:font "Verdana"))
341               ((x-family-fonts "Sans Serif")    '(:family "Sans Serif"))
342               (nil (warn "Cannot find a Sans Serif Font.  Install Source Sans Pro.")))
343         "My variable width font available to org-mode files and whatnot."))
344
345   (defun sd/org-color ()
346     (let* ((sd/fixed-font-tuple (list :font sd/fixed-font-family))
347            (base-font-color     (face-foreground 'default nil 'default))
348            (background-color    (face-background 'default nil 'default))
349            (primary-color       (face-foreground 'mode-line nil))
350            (secondary-color     (face-background 'secondary-selection nil 'region))
351            (base-height         (face-attribute 'default :height))
352            (headline           `(:inherit default :weight bold :foreground ,base-font-color)))
353       (custom-theme-set-faces 'ha/org-theme
354                               `(org-agenda-structure ((t (:inherit default :height 2.0 :underline nil))))
355                               `(org-verbatim ((t (:inherit 'fixed-pitched :foreground "#aef"))))
356                               `(org-table ((t (:inherit 'fixed-pitched))))
357                               `(org-block ((t (:inherit 'fixed-pitched))))
358                               `(org-block-background ((t (:inherit 'fixed-pitched))))
359                               `(org-block-begin-line ((t (:inherit 'fixed-pitched))))
360                               `(org-block-end-line ((t (:inherit 'fixed-pitched))))
361                               `(org-level-8 ((t (,@headline ,@sd/variable-font-tuple))))
362                               `(org-level-7 ((t (,@headline ,@sd/variable-font-tuple))))
363                               `(org-level-6 ((t (,@headline ,@sd/variable-font-tuple))))
364                               `(org-level-5 ((t (,@headline ,@sd/variable-font-tuple))))
365                               `(org-level-4 ((t (,@headline ,@sd/variable-font-tuple
366                                                             :height ,(round (* 1.1 base-height))))))
367                               `(org-level-3 ((t (,@headline ,@sd/variable-font-tuple
368                                                             :height ,(round (* 1.25 base-height))))))
369                               `(org-level-2 ((t (,@headline ,@sd/variable-font-tuple
370                                                             :height ,(round (* 1.5 base-height))))))
371                               `(org-level-1 ((t (,@headline ,@sd/variable-font-tuple
372                                                             :height ,(round (* 1.75 base-height))))))
373                               `(org-document-title ((t (,@headline ,@sd/variable-font-tuple :height 1.5 :underline nil)))))))
374
375
376 #+END_SRC
377
378 search text theme
379 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
380   (set-face-attribute 'lazy-highlight nil :background "yellow" :foreground "black" :weight 'bold)
381 #+END_SRC
382
383 ** Rainbow-delimiter
384
385 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
386
387   (use-package rainbow-delimiters
388     :ensure t
389     :init
390     (add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
391
392 #+END_SRC
393
394 ** page-break-lines
395 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
396   (use-package page-break-lines
397     :ensure t
398     :config
399     (global-page-break-lines-mode)
400     ;; (turn-on-page-break-lines-mode)
401     )
402 #+END_SRC
403
404 ** rainbow-mode
405
406 Enable rainbow mode in emacs lisp mode
407
408 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
409   (use-package rainbow-mode
410     :ensure t
411   ;  :init
412   ;  (add-hook emacs-lisp-mode-hook 'rainbow-mode)
413     )
414
415 #+END_SRC
416
417 ** cusor color
418 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
419   (if (display-graphic-p)
420       (set-cursor-color 'red))
421 #+END_SRC
422
423 * Mode-line
424 ** clean mode line
425 clean mode line, Refer to [[https://www.masteringemacs.org/article/hiding-replacing-modeline-strings][Marstering Emacs]], some greek character see [[http://xahlee.info/math/math_unicode_greek.html][math_unicode_greek]]
426 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
427   (defvar mode-line-cleaner-alist
428     `((auto-complete-mode . " α")
429       (paredit-mode . " π")
430       (eldoc-mode . "")
431       (abbrev-mode . "")
432       (projectile-mode . "")
433       (ivy-mode . "")
434       (undo-tree-mode . "")
435       ;; default is WK
436       (which-key-mode . "")
437       ;; default is SP
438       (smartparens-mode . "")
439       ;; default is LR
440       (linum-relative-mode . "")
441       ;; default is ARev
442       (auto-revert-mode . "")
443       ;; default is Ind
444       (org-indent-mode . "")
445       ;; default is  Fly
446       (flyspell-mode . "")
447       (irony-mode . "")
448       (page-break-lines-mode . "")
449       (yas-minor-mode . "y")
450       ;; default jj
451       (evil-escape-mode . "")
452       ;; Major modes
453       (lisp-interaction-mode . "λ")
454       (hi-lock-mode . "")
455       (python-mode . "Py")
456       (emacs-lisp-mode . "EL")
457       (eshell-mode . "𝞔")
458       (dired-mode . "𝞓")
459       (ibuffer-mode . "𝞑")
460       (org-mode . "𝞞")
461       (nxhtml-mode . "nx"))
462     "Alist for `clean-mode-line'.
463
464   When you add a new element to the alist, keep in mind that you
465   must pass the correct minor/major mode symbol and a string you
466   want to use in the modeline *in lieu of* the original.")
467
468
469   (defun clean-mode-line ()
470     (interactive)
471     (loop for cleaner in mode-line-cleaner-alist
472           do (let* ((mode (car cleaner))
473                    (mode-str (cdr cleaner))
474                    (old-mode-str (cdr (assq mode minor-mode-alist))))
475                (when old-mode-str
476                    (setcar old-mode-str mode-str))
477                  ;; major mode
478                (when (eq mode major-mode)
479                  (setq mode-name mode-str)))))
480
481
482   (add-hook 'after-change-major-mode-hook 'clean-mode-line)
483 #+END_SRC
484
485 ** Powerline mode
486 Install powerline mode [[https://github.com/milkypostman/powerline][powerline]]
487 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
488   (use-package powerline
489     :ensure t
490     :config
491     ;; (powerline-center-theme)
492     )
493
494   ;; (use-package smart-mode-line
495   ;;   :ensure t)
496   ;; (use-package smart-mode-line-powerline-theme
497   ;;   :ensure t)
498 #+END_SRC
499
500 Revised powerline-center-theme
501 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
502   (defun sd/powerline-simpler-vc (s)
503     (if s
504         (replace-regexp-in-string "Git[:-]" "" s)
505       s))
506
507   (defface sd/powerline-active1 '((t (:background "yellow" :foreground "black" :inherit mode-line)))
508     "My Powerline face 1 based on powerline-active1."
509     :group 'powerline)
510
511   (defface sd/buffer-modified-active1 '((t (:background "red" :foreground "black" :inherit mode-line)))
512     "My Powerline face 1 based on powerline-active1."
513     :group 'powerline)
514
515   (defface sd/buffer-view-active1 '((t (:background "green" :foreground "black" :inherit mode-line)))
516     "My Powerline face 1 based on powerline-active1."
517     :group 'powerline)
518
519   (defface sd/mode-line-buffer-id
520     '((t (:background "yellow" :foreground "black" :inherit mode-line-buffer-id)))
521     "My powerline mode-line face, based on mode-line-buffer-id"
522     :group 'powerline)
523
524   ;; Don't show buffer modified for scratch and eshell mode
525   (defun sd/buffer-is-eshel-or-scratch ()
526     "Dot not show modified indicator for buffers"
527     (interactive)
528     (unless (or (string-match "*scratch*" (buffer-name))
529                 (equal major-mode 'eshell-mode))
530       t))
531
532   (defun sd/powerline-center-theme_revised ()
533     "Setup a mode-line with major and minor modes centered."
534     (interactive)
535     (setq-default mode-line-format
536                   '("%e"
537                     (:eval
538                      (let* ((active (powerline-selected-window-active))
539                             ;; (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'mode-line-buffer-id-inactive))
540                             (mode-line-buffer-id (if active 'sd/mode-line-buffer-id 'powerline-inactive1))
541                             (mode-line (if active 'mode-line 'mode-line-inactive))
542                             (my-face1 (if active 'sd/powerline-active1 'powerline-inactive1))
543                             (my-face-buffer-modified (if (and (sd/buffer-is-eshel-or-scratch) (buffer-modified-p) (not buffer-read-only)) 
544                                                          'sd/buffer-modified-active1
545                                                        (if buffer-read-only 'sd/buffer-view-active1
546                                                          my-face1)))
547                             (face1 (if active 'powerline-active1 'powerline-inactive1))
548                             (face2 (if active 'powerline-active2 'powerline-inactive2))
549                             (separator-left (intern (format "powerline-%s-%s"
550                                                             (powerline-current-separator)
551                                                             (car powerline-default-separator-dir))))
552                             (separator-right (intern (format "powerline-%s-%s"
553                                                              (powerline-current-separator)
554                                                              (cdr powerline-default-separator-dir))))
555                             (lhs (list (powerline-raw "%* " my-face-buffer-modified 'l)
556                                        ;; (powerline-buffer-size mode-line 'l)
557                                        (powerline-buffer-id mode-line-buffer-id 'l)
558                                        (powerline-raw " " my-face1)
559                                        (funcall separator-left my-face1 face1)
560                                        (powerline-narrow face1 'l)
561                                        ;; (powerline-vc face1)
562                                        (sd/powerline-simpler-vc (powerline-vc face1))))
563                             (rhs (list (powerline-raw global-mode-string face1 'r)
564                                        (powerline-raw "%4l" face1 'r)
565                                        (powerline-raw ":" face1)     
566                                        (powerline-raw "%3c" face1 'r)
567                                        (funcall separator-right face1 my-face1)
568                                        ;; (powerline-raw " " my-face1)
569                                        (powerline-raw (format-time-string " %I:%M %p  ") my-face1 'r)
570                                        ;; (powerline-raw "%6p" my-face1 'r)
571                                        ;; (powerline-hud my-face1 face1 )
572                                        ))
573                             (center (list (powerline-raw " " face1)
574                                           (funcall separator-left face1 face2)
575                                           (powerline-raw (when  (and (boundp 'evil-mode)  evil-mode) evil-mode-line-tag) face2)
576                                           (when (and (boundp 'erc-track-minor-mode) erc-track-minor-mode)
577                                             (powerline-raw erc-modified-channels-object face2 'l))
578                                           (powerline-major-mode face2 'l)
579                                           (powerline-process face2)
580                                           (powerline-raw " :" face2)
581                                           (powerline-minor-modes face2 'l)
582                                           (powerline-raw " " face2)
583                                           (funcall separator-right face2 face1))))
584                        (concat (powerline-render lhs)
585                                (powerline-fill-center face1 (/ (powerline-width center) 2.0))
586                                (powerline-render center)
587                                (powerline-fill face1 (powerline-width rhs))
588                                (powerline-render rhs)))))))
589
590   (sd/powerline-center-theme_revised)
591 #+END_SRC
592
593 Fix the issue in mode line when showing triangle 
594 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
595   (setq ns-use-srgb-colorspace nil)
596 #+END_SRC
597
598 set height in mode line
599 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
600   (defconst sd/mode-line-font-heigh 100
601     "Defaulet the fontsize on mode line.")
602
603   (with-eval-after-load "powerline"
604     (when (display-graphic-p)
605       (set-face-attribute 'mode-line-inactive nil :height sd/mode-line-font-heigh)
606       (set-face-attribute 'mode-line nil :height sd/mode-line-font-heigh)
607       (let* ((base-font-size (face-attribute 'default :height)))
608         ;; 100/140;0.8
609         (set-variable 'powerline-height (/ base-font-size 10))
610         (set-variable 'powerline-text-scale-factor (/ (float sd/mode-line-font-heigh) base-font-size)))))
611 #+END_SRC
612
613 * IDO & SMEX
614 ** IDO
615 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
616   (use-package ido
617     :ensure t
618     :init (setq ido-enable-flex-matching t
619                 ido-ignore-extensions t
620                 ido-use-virtual-buffers t
621                 ido-use-faces nil
622                 ido-everywhere t)
623     (setq ido-save-directory-list-file (concat sd-temp-directory "ido.last"))
624     :config
625     (ido-mode 1)
626     (ido-everywhere 1)
627     (add-to-list 'completion-ignored-extensions ".pyc")
628
629
630     (define-key ido-buffer-completion-map (kbd "C-w") #'ido-delete-backward-word-updir)
631     (define-key ido-file-completion-map (kbd "C-w") #'ido-delete-backward-word-updir)
632     (define-key ido-file-dir-completion-map (kbd "C-w") #'ido-delete-backward-updir)
633     ;; (define-key ido-file-dir-completion-map (kbd "C-i") #'ido-copy-current-word)
634     )
635
636   (icomplete-mode t)
637 #+END_SRC
638
639 ** FLX
640 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
641   (use-package flx-ido
642     :ensure t
643     :config (flx-ido-mode nil))
644 #+END_SRC
645
646 ** IDO-vertically
647 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
648   (use-package ido-vertical-mode
649     :ensure t
650     :init
651     (setq ido-vertical-define-keys 'C-n-C-p-up-and-down)
652     :config
653     (ido-vertical-mode 1))
654 #+END_SRC
655
656 ** SMEX
657 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
658   (use-package smex
659     :ensure t
660     :init
661     (setq smex-save-file (concat sd-temp-directory "smex-items"))
662     (smex-initialize)
663     :bind
664     ("M-x" . smex)
665     ("M-X" . smex-major-mode-commands))
666 #+END_SRC
667
668 ** Ido-ubiquitous
669 Use [[https://github.com/DarwinAwardWinner/ido-ubiquitous][ido-ubiquitous]] for ido everywhere. It makes =describe-function= can also use ido
670 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
671   (use-package ido-ubiquitous
672     :ensure t
673     :init
674     (setq magit-completing-read-function 'magit-ido-completing-read)
675     (setq gnus-completing-read-function 'gnus-ido-completing-read)
676     :config
677     (ido-ubiquitous-mode 1))
678 #+END_SRC
679
680 ** Ido-exit-target
681 [[https://github.com/waymondo/ido-exit-target][ido-exit-target]] let you open file/buffer on =other-windows= when call =ido-switch-buffer=
682 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
683   (use-package ido-exit-target
684     :ensure t
685     :init
686     (mapcar #'(lambda (map)
687               (define-key map (kbd "C-j") #'ido-exit-target-other-window)
688               (define-key map (kbd "C-k") #'ido-exit-target-split-window-below))
689             (list ido-buffer-completion-map
690                   ;; ido-common-completion-map
691                   ido-file-completion-map
692                   ido-file-dir-completion-map)))
693 #+END_SRC
694
695 ** helm
696 let helm windows split inside current window
697 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
698   (with-eval-after-load 'helm
699     (setq helm-split-window-in-side-p t))
700 #+END_SRC
701
702 * Projectile
703 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
704   (use-package projectile
705     :ensure t
706     :init
707     (setq projectile-enable-caching t)
708     (setq projectile-switch-project-action 'projectile-dired)
709     (setq projectile-cache-file (concat sd-temp-directory "projectile.cache"))
710     (setq projectile-completion-system 'ivy)
711     :config
712     (add-to-list 'projectile-globally-ignored-files "GTAGS")
713     (projectile-global-mode t))
714
715   ;; https://emacs.stackexchange.com/questions/16497/how-to-exclude-files-from-projectile
716   (if (executable-find "rg")
717       (progn
718         (defconst modi/rg-arguments
719           `("--line-number"               ; line numbers
720             "--smart-case"
721             "--follow"                    ; follow symlinks
722             "--mmap")                     ; apply memory map optimization when possible
723           "Default rg arguments used in the functions in `projectile' package.")
724
725         (defun modi/advice-projectile-use-rg ()
726           "Always use `rg' for getting a list of all files in the project."
727           (mapconcat 'identity
728                      (append '("\\rg")    ; used unaliased version of `rg': \rg
729                              modi/rg-arguments
730                              '("--null"   ; output null separated results,
731                                "--files")) ; get file names matching the regex '' (all files)
732                      " "))
733
734         (advice-add 'projectile-get-ext-command :override #'modi/advice-projectile-use-rg))
735     (message "rg is not found"))
736 #+END_SRC
737
738 * Swiper & Ivy & Counsel
739 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
740   (use-package counsel
741     :ensure t
742     :defer t
743     :init
744     (use-package ivy :ensure t)
745     (ivy-mode 1)
746     (setq ivy-use-virtual-buffers nil
747           ivy-wrap t
748           ivy-count-format "%d/%d ")
749     (set-face-attribute 'ivy-current-match nil :background "Orange" :foreground "black")
750     (global-set-key (kbd "M-x") 'counsel-M-x)
751     ;; (global-set-key (kbd "C-h f") 'counsel-describe-function)
752     ;; (global-set-key (kbd "C-h v") 'counsel-describe-variable)
753     (global-set-key (kbd "C-x C-f") 'counsel-find-file)
754     (define-key read-expression-map (kbd "C-r") 'counsel-expression-history)
755     (global-set-key (kbd "C-c C-r") 'ivy-resume))
756 #+END_SRC
757
758 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
759   (ivy-set-actions
760    t
761    '(("q" (lambda (x) (ivy-quit-and-run (message "=="))) "exit")))
762
763   (ivy-set-actions
764    'projectile-switch-to-buffer
765    '(("j" ivy--switch-buffer-other-window-action "other window" )))
766
767   (defun sd/projectile-find-file-other-window-action (file)
768     (message "=========")
769     (message (projectile-expand-root file))
770     (find-file-other-window (projectile-expand-root file)))
771
772   (ivy-set-actions
773    'projectile-find-file
774    '(("j" sd/projectile-find-file-other-window-action "other-window")))
775
776   (defun sd/swith-to-buffer ()
777     "switch to buffer"
778     (interactive)
779     (if (projectile-project-p)
780         (projectile-switch-to-buffer)
781       (ivy-switch-buffer)))
782
783   (ivy-set-actions
784    'sd/swith-to-buffer
785    '(("j" ivy--switch-buffer-other-window-action "other window")))
786
787   (defun sd/exit-ivy-and-swith-to-buffer ()
788     "exit ivy complete, and call swith to buffer"
789     (interactive)
790     (ivy-quit-and-run
791      (ivy-switch-buffer)))
792
793   (defun my/ivy-read-action (key)
794     (let ((actions (ivy-state-action ivy-last)))
795       (if (null (ivy--actionp actions))
796           t
797         (let* ((action-idx (cl-position-if
798                             (lambda (x) (equal (car x) key))
799                             (cdr actions))))
800           (cond ((member key '("\e" "\a"))
801                  nil)
802                 ((null action-idx)
803                  (message "%s is not bound" key)
804                  nil)
805                 (t
806                  (message "")
807                  (setcar actions (1+ action-idx))
808                  (ivy-set-action actions)))))))
809
810   (with-eval-after-load "ivy"
811     (define-key ivy-minibuffer-map (kbd "C-o") 'ivy-dispatching-done)
812     (define-key ivy-minibuffer-map (kbd "C-k") (lambda () (interactive)
813                                                  (my/ivy-read-action "j")
814                                                  (ivy-done)))
815     (define-key ivy-minibuffer-map (kbd "M-o") #'sd/exit-ivy-and-swith-to-buffer))
816 #+END_SRC
817
818 stolen from [[https://github.com/mariolong/emacs.d/blob/f6a061594ef1b5d1f4750e9dad9dc97d6e122840/emacs-init.org][here]]
819 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
820   (use-package swiper
821     :ensure t
822     ;; :init
823     :config
824     ;; (ivy-mode)
825     (global-set-key (kbd "s-/") 'swiper)
826     (define-key swiper-map (kbd "M-r") 'swiper-query-replace)
827     (define-key swiper-map (kbd "C-.") (lambda ()
828                                          (interactive)
829                                          (insert (format "%s" (with-ivy-window (thing-at-point 'word))))))
830     (define-key swiper-map (kbd "M-.") (lambda ()
831                                          (interactive)
832                                          (insert (format "%s" (with-ivy-window (thing-at-point 'symbol)))))))
833
834 #+END_SRC
835 * Org-mode Settings
836 ** Org-mode Basic setting
837 Always indents header, and hide header leading starts so that no need type =#+STATUP: indent= 
838 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
839   (use-package org
840     :ensure t
841     :init
842     (setq org-startup-indented t)
843     (setq org-hide-leading-starts t)
844     (setq org-src-fontify-natively t)
845     (setq org-src-tab-acts-natively t)
846     (setq org-confirm-babel-evaluate nil)
847     (setq org-use-speed-commands t)
848     (setq org-completion-use-ido t)
849     (setq org-startup-with-inline-images t)
850     ;; latex preview
851     ;; (setq org-startup-with-latex-preview t)
852     ;; (setq org-format-latex-options (plist-put org-format-latex-options :scale 1.2))
853     (require 'org-habit)
854     (add-to-list 'org-modules 'org-habit)
855     (setq org-habit-graph-column 50)
856     (setq org-hide-emphasis-markers t)
857     (setq org-html-validation-link nil)
858     ;; open link when return clicked
859     (setq org-return-follows-link t)
860     ;; open the ppt file by external open instead of emacs
861     (add-to-list 'org-file-apps '("\\.pptx" . "open %s"))
862     (add-to-list 'org-file-apps '("\\.doc" . "open %s"))
863     (setq org-image-actual-width nil))
864 #+END_SRC
865
866
867 ** Org babel
868 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
869   (el-get-bundle hasu/emacs-ob-racket
870     :features ob-racket)
871
872   ;; Lua support
873   ;(use-package ob-lua
874   ;  :ensure t)
875
876   ;; use current window for org source buffer editting
877
878   (setq org-src-window-setup 'current-window )
879   (define-key org-mode-map (kbd "C-'") nil)
880   ;; C-M-i is mapped to imenu globally
881   (define-key org-mode-map (kbd "C-M-i") nil)
882   ;; set the ditta.jar path
883
884   (setq org-ditaa-jar-path "/usr/local/Cellar/ditaa/0.9/libexec/ditaa0_9.jar")
885   (unless 
886       (file-exists-p org-ditaa-jar-path)
887     (message "seudut: ditaa.jar not found at %s " org-ditaa-jar-path))
888
889   (org-babel-do-load-languages 'org-babel-load-languages
890                                '((python . t)
891                                  (C . t)
892                                  (perl . t)
893                                  (calc . t)
894                                  (latex . t)
895                                  (java . t)
896                                  (ruby . t)
897   ;                               (lua . t)
898                                  (lisp . t)
899                                  (scheme . t)
900                                  (racket . t)
901                                  (sh . t)
902                                  (sqlite . t)
903                                  (js . t)
904                                  (gnuplot . t)
905                                  (ditaa . t)
906                                  (plantuml . t)))
907
908
909   ;; toggle image preview 
910   (add-hook 'org-babel-after-execute-hook 'sd/display-inline-images 'append)
911
912   (defun sd/display-inline-images ()
913     (condition-case nil
914         (org-display-inline-images)
915       (error nil)))
916
917   ;; ditaa artist mode
918   (with-eval-after-load "artist"
919     (define-key artist-mode-map [down-mouse-3] 'artist-mouse-choose-operation))
920 #+END_SRC
921 *** plantUML
922 [[http://eschulte.github.io/babel-dev/DONE-integrate-plantuml-support.html][DONE-integrate-plantuml-support]]
923 #+BEGIN_SRC sh
924   ## support plantuml
925   brew install plantuml
926 #+END_SRC
927
928 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
929   (use-package plantuml-mode
930     :ensure t)
931
932   (setq org-plantuml-jar-path
933         (expand-file-name "/usr/local/Cellar/plantuml/8041/plantuml.8041.jar"))
934
935   (set-variable 'plantuml-jar-path
936                 (expand-file-name "/usr/local/Cellar/plantuml/8041/plantuml.8041.jar"))
937 #+END_SRC
938
939 ** Org-bullets
940 use [[https://github.com/sabof/org-bullets][org-bullets]] package to show utf-8 charactes
941 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
942   (use-package org-bullets
943     :ensure t
944     :init
945     (add-hook 'org-mode-hook (apply-partially #'org-bullets-mode t)))
946
947   (setq org-bullets-bullet-list '("⦿" "✪" "◉" "○" "►" "◆"))
948
949   ;; increase font size when enter org-src-mode
950   ;; (add-hook 'org-src-mode-hook (lambda () (text-scale-increase 2)))
951
952   ;; define a face for org-bullets
953   (defface org-bullet-face
954       '((t (:foreground "green yellow")))
955   "Face used for the org-bullets.")
956   (setq org-bullets-face-name (quote  org-bullet-face))
957   (set-face-attribute 'org-bullet-face t :foreground "burlywood" :weight 'normal :height 1.6)
958 #+END_SRC
959
960 ** Worf Mode
961 [[https://github.com/abo-abo/worf][worf]] mode is an extension of vi-like binding for org-mode. 
962 In =worf-mode=, it is mapping =[=, =]= as =worf-backward= and =worf-forward= in global, wich
963 cause we cannot input =[= and =]=, so here I unset this mappings. And redifined this two to
964 =M-[= and =M-]=. see this [[https://github.com/abo-abo/worf/issues/19#issuecomment-223756599][issue]]
965 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
966   (use-package worf
967     :ensure t
968     :commands worf-mode
969     :init
970     (require 'ivy)
971     (add-hook 'org-mode-hook 'worf-mode))
972 #+END_SRC
973
974 ** Get Things Done
975 Refer to [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
976 *** basic setup
977 standard key binding
978 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
979   (global-set-key "\C-cl" 'org-store-link)
980   (global-set-key "\C-ca" 'org-agenda)
981   (global-set-key "\C-cb" 'org-iswitchb)
982 #+END_SRC
983
984 *** Plain List 
985 Replace the list bullet =-=, =+=,  with =•=, a litter change based [[https://github.com/howardabrams/dot-files/blob/master/emacs-org.org][here]]
986 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
987   ;; (use-package org-mode
988   ;;   :init
989   ;;   (font-lock-add-keywords 'org-mode
990   ;;    '(("^ *\\([-+]\\) "
991   ;;           (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•")))))))
992 #+END_SRC
993  
994 *** Todo Keywords
995 refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][fancy todo states]], 
996 To track TODO state changes, the =!= is to insert a timetamp, =@= is to insert a note with
997 timestamp for the state change.
998 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
999     ;; (setq org-todo-keywords
1000     ;;        '((sequence "☛ TODO(t)" "|" "✔ DONE(d)")
1001     ;;          (sequence "⚑ WAITING(w)" "|")
1002     ;;          (sequence "|" "✘ CANCELLED(c)")))
1003   ; (setq org-todo-keyword-faces
1004   ;        (quote ("TODO" .  (:foreground "red" :weight bold))
1005   ;               ("NEXT" .  (:foreground "blue" :weight bold))
1006   ;               ("WAITING" . (:foreground "forest green" :weight bold))
1007   ;               ("DONE" .  (:foreground "magenta" :weight bold))
1008   ;               ("CANCELLED" . (:foreground "forest green" :weight bold))))
1009
1010
1011   (setq org-todo-keywords
1012         (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)")
1013                 ;; (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")
1014                 (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" ))))
1015
1016   (setq org-todo-keyword-faces
1017         (quote (("TODO" :foreground "red" :weight bold)
1018                 ("NEXT" :foreground "blue" :weight bold)
1019                 ("DONE" :foreground "forest green" :weight bold)
1020                 ("WAITING" :foreground "orange" :weight bold)
1021                 ("HOLD" :foreground "magenta" :weight bold)
1022                 ("CANCELLED" :foreground "forest green" :weight bold)
1023                 ;; ("MEETING" :foreground "forest green" :weight bold)
1024                 ;; ("PHONE" :foreground "forest green" :weight bold)
1025                 )))
1026 #+END_SRC
1027
1028 Fast todo selections
1029
1030 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1031   (setq org-use-fast-todo-selection t)
1032   (setq org-treat-S-cursor-todo-selection-as-state-change nil)
1033 #+END_SRC
1034
1035 TODO state triggers and tags, [[http://doc.norang.ca/org-mode.html][Organize Your Life in Plain Text]]
1036
1037 - Moving a task to =CANCELLED=, adds a =CANCELLED= tag
1038 - Moving a task to =WAITING=, adds a =WAITING= tag
1039 - Moving a task to =HOLD=, add =HOLD= tags
1040 - Moving a task to =DONE=, remove =WAITING=, =HOLD= tag
1041 - Moving a task to =NEXT=, remove all waiting/hold/cancelled tags
1042
1043 This tags are used to filter tasks in agenda views
1044 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1045   (setq org-todo-state-tags-triggers
1046         (quote (("CANCELLED" ("CANCELLED" . t))
1047                 ("WAITING" ("WAITING" . t))
1048                 ("HOLD" ("WAITING") ("HOLD" . t))
1049                 (done ("WAITING") ("HOLD"))
1050                 ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
1051                 ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
1052                 ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
1053 #+END_SRC
1054
1055 Logging Stuff 
1056 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1057   ;; log time when task done
1058   ;; (setq org-log-done (quote time))
1059   ;; save clocking into to LOGBOOK
1060   (setq org-clock-into-drawer t)
1061   ;; save state change notes and time stamp into LOGBOOK drawer
1062   (setq org-log-into-drawer t)
1063   (setq org-clock-into-drawer "CLOCK")
1064 #+END_SRC
1065
1066 *** Tags
1067 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1068   (setq org-tag-alist (quote ((:startgroup)
1069                               ("@office" . ?e)
1070                               ("@home" . ?h)
1071                               (:endgroup)
1072                               ("WAITING" . ?w)
1073                               ("HOLD" . ?h)
1074                               ("CANCELLED" . ?c))))
1075
1076   ;; Allow setting single tags without the menu
1077   (setq org-fast-tag-selection-single-key (quote expert))
1078 #+END_SRC
1079
1080 *** Capture - Refile - Archive
1081
1082 Capture lets you quickly store notes with little interruption of your work flow.
1083
1084 **** Capture Templates
1085
1086 When a new taks needs to be added, categorize it as 
1087
1088 All captured file which need next actions are stored in =refile.org=, 
1089 - A new task / note (t) =refile.org=
1090 - A work task in office =office.org=
1091 - A jourenl =diary.org=
1092 - A new habit (h) =refile.org=
1093
1094 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1095   (setq org-directory "~/org")
1096   (setq org-default-notes-file "~/org/refile.org")
1097   (setq sd/org-diary-file "~/org/diary.org")
1098
1099   (global-set-key (kbd "C-c c") 'org-capture)
1100
1101   (setq org-capture-templates
1102         (quote (("t" "Todo" entry (file org-default-notes-file)
1103                  "* TODO %?\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1104                 ("n" "Note" entry (file org-default-notes-file)
1105                  "* %? :NOTE:\n:LOGBOOK:\n- Added: %U\t\tAt: %a\n:END:")
1106                 ("j" "Journal" entry (file+datetree sd/org-diary-file)
1107                  "* %?\n:LOGBOOK:\n:END:" :clock-in t :clock-resume t)
1108                 ("h" "Habit" entry (file org-default-notes-file)
1109                  "* 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 "))))
1110 #+END_SRC
1111
1112 **** Refiling Tasks
1113
1114 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1115   (setq org-refile-targets (quote (;; (nil :maxlevel . 9)
1116                                    (org-agenda-files :maxlevel . 9))))
1117
1118   (setq org-refile-use-outline-path t)
1119
1120   (setq org-refile-allow-creating-parent-nodes (quote confirm))
1121 #+END_SRC
1122
1123 *** Agenda Setup
1124 Setting agenda files and the agenda view
1125 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1126   (setq org-agenda-files (quote ("~/org/gtd.org")))
1127
1128   ;; only show today's tasks in agenda view
1129   ;; (setq org-agenda-span 'day)
1130   ;; Use current windows for agenda view
1131   ;; (setq org-agenda-window-setup 'current-window)
1132
1133   ;; show all feature entries for repeating tasks,
1134   ;; this is already setting by default
1135   (setq org-agenda-repeating-timestamp-show-all t)
1136
1137   ;; Show all agenda dates - even if they are empty
1138   (setq org-agenda-show-all-dates t)
1139 #+END_SRC
1140
1141 ** Org mobile
1142 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1143   (with-eval-after-load "org"
1144     (require 'org-mobile)
1145     ;; Set to the location of your Org files on your local system
1146     ;; (setq org-directory "~/org")
1147     ;; Set to the name of the file where new notes will be stored
1148     (setq org-mobile-inbox-for-pull "~/org/flagged.org")
1149     ;; Set to <your Dropbox root directory>/MobileOrg.
1150     (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg"))
1151 #+END_SRC
1152
1153 ** Export PDF
1154 Install MacTex-basic [[http://www.tug.org/mactex/morepackages.html][MacTex-basic]]  and some tex packages
1155 #+BEGIN_SRC sh 
1156   wget http://tug.org/cgi-bin/mactex-download/BasicTeX.pkg
1157
1158   sudo tlmgr update --self
1159
1160   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
1161 #+END_SRC
1162
1163 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1164   ;; ;; allow for export=>beamer by placing
1165
1166   ;; http://emacs-fu.blogspot.com/2011/04/nice-looking-pdfs-with-org-mode-and.html
1167   ;; #+LaTeX_CLASS: beamer in org files
1168   (unless (boundp 'org-export-latex-classes)
1169     (setq org-export-latex-classes nil))
1170   (add-to-list 'org-export-latex-classes
1171     ;; beamer class, for presentations
1172     '("beamer"
1173        "\\documentclass[11pt]{beamer}\n
1174         \\mode<{{{beamermode}}}>\n
1175         \\usetheme{{{{beamertheme}}}}\n
1176         \\usecolortheme{{{{beamercolortheme}}}}\n
1177         \\beamertemplateballitem\n
1178         \\setbeameroption{show notes}
1179         \\usepackage[utf8]{inputenc}\n
1180         \\usepackage[T1]{fontenc}\n
1181         \\usepackage{hyperref}\n
1182         \\usepackage{color}
1183         \\usepackage{listings}
1184         \\lstset{numbers=none,language=[ISO]C++,tabsize=4,
1185     frame=single,
1186     basicstyle=\\small,
1187     showspaces=false,showstringspaces=false,
1188     showtabs=false,
1189     keywordstyle=\\color{blue}\\bfseries,
1190     commentstyle=\\color{red},
1191     }\n
1192         \\usepackage{verbatim}\n
1193         \\institute{{{{beamerinstitute}}}}\n          
1194          \\subject{{{{beamersubject}}}}\n"
1195
1196        ("\\section{%s}" . "\\section*{%s}")
1197  
1198        ("\\begin{frame}[fragile]\\frametitle{%s}"
1199          "\\end{frame}"
1200          "\\begin{frame}[fragile]\\frametitle{%s}"
1201          "\\end{frame}")))
1202
1203     ;; letter class, for formal letters
1204
1205     (add-to-list 'org-export-latex-classes
1206
1207     '("letter"
1208        "\\documentclass[11pt]{letter}\n
1209         \\usepackage[utf8]{inputenc}\n
1210         \\usepackage[T1]{fontenc}\n
1211         \\usepackage{color}"
1212  
1213        ("\\section{%s}" . "\\section*{%s}")
1214        ("\\subsection{%s}" . "\\subsection*{%s}")
1215        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
1216        ("\\paragraph{%s}" . "\\paragraph*{%s}")
1217        ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
1218
1219
1220   (require 'ox-md)
1221   (require 'ox-beamer)
1222
1223   (setq org-latex-pdf-process
1224         '("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1225           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
1226           "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
1227
1228   (setq TeX-parse-self t)
1229
1230   (setq TeX-PDF-mode t)
1231   (add-hook 'LaTeX-mode-hook
1232             (lambda ()
1233               (LaTeX-math-mode)
1234               (setq TeX-master t)))
1235
1236 #+END_SRC
1237
1238 ** Export Html
1239 Color higlight the source code block in exported html, [[http://stackoverflow.com/questions/24082430/org-mode-no-syntax-highlighting-in-exported-html-page][org-mode-no-syntax-highlighting-in-exported-html-page]]
1240 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1241   (use-package htmlize
1242     :ensure t)
1243 #+END_SRC
1244
1245 ** Org structure template
1246 extend org-mode's easy templates, refer to [[http://coldnew.github.io/coldnew-emacs/#orgheadline94][Extend org-modes' esay templates]]
1247 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1248   ;; ‘s’     ‘#+BEGIN_SRC ... #+END_SRC’
1249   ;; ‘e’     ‘#+BEGIN_EXAMPLE ... #+END_EXAMPLE’
1250   ;; ‘q’     ‘#+BEGIN_QUOTE ... #+END_QUOTE’
1251   ;; ‘v’     ‘#+BEGIN_VERSE ... #+END_VERSE’
1252   ;; ‘c’     ‘#+BEGIN_CENTER ... #+END_CENTER’
1253   ;; ‘l’     ‘#+BEGIN_LaTeX ... #+END_LaTeX’
1254   ;; ‘L’     ‘#+LaTeX:’
1255   ;; ‘h’     ‘#+BEGIN_HTML ... #+END_HTML’
1256   ;; ‘H’     ‘#+HTML:’
1257   ;; ‘a’     ‘#+BEGIN_ASCII ... #+END_ASCII’
1258   ;; ‘A’     ‘#+ASCII:’
1259   ;; ‘i’     ‘#+INDEX:’ line
1260   ;; ‘I’     ‘#+INCLUDE:’ line
1261
1262
1263   (add-to-list 'org-structure-template-alist
1264                '("E" "#+BEGIN_SRC emacs-lisp :tangle yes :results silent\n?\n#+END_SRC"))
1265   (add-to-list 'org-structure-template-alist
1266                '("R" "#+BEGIN_SRC racket :tangle no :results output replace\n?\n#+END_SRC"))
1267   (add-to-list 'org-structure-template-alist
1268                '("S" "#+BEGIN_SRC sh :results output replace\n?\n#+END_SRC"))
1269   (add-to-list 'org-structure-template-alist
1270                '("p" "#+BEGIN_SRC plantuml :file uml.png \n?\n#+END_SRC"))
1271   (add-to-list 'org-structure-template-alist
1272                '("P" "#+BEGIN_SRC perl \n?\n#+END_SRC"))
1273   (add-to-list 'org-structure-template-alist
1274                '("f" "#+BEGIN_SRC fundamental :tangle ?\n\n#+END_SRC"))
1275   (add-to-list 'org-structure-template-alist
1276                '("C" "#+BEGIN_SRC c :tangle ?\n\n#+END_SRC"))
1277   (add-to-list 'org-structure-template-alist
1278                '("m" "\\begin{equation}\n?\n\\end{equation}"))
1279   (add-to-list 'org-structure-template-alist
1280                '("b" "#+STARTUP: showall
1281   ,#+STARTUP: inlineimages
1282   ,#+OPTIONS: toc:nil\n"))
1283   (add-to-list 'org-structure-template-alist
1284                '("d" "#+BEGIN_SRC ditaa :file ?  :cmdline -r -s 0.8 :cache yes \n\n#+END_SRC"))
1285   (add-to-list 'org-structure-template-alist
1286                '("u" "#+BEGIN_SRC plantuml :file ? \n\n#+END_SRC"))
1287
1288 #+END_SRC
1289
1290 ** Org theme
1291 *** variable-pitch-mode and fixed-pitch-mode
1292 [[https://yoo2080.wordpress.com/2013/05/30/monospace-font-in-tables-and-source-code-blocks-in-org-mode-proportional-font-in-other-parts/][monospace font in tables and source code blocks in org-mode, proportional font in other parts]]
1293 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1294   (when (display-graphic-p)
1295     (unless (find-font (font-spec :name "Ubuntu Mono"))
1296       (warn "Font not found Ubuntu Mono"))
1297     (unless (find-font (font-spec :name "Source Code Pro"))
1298       (warn "Font not found Source Code Pro"))
1299     (unless (find-font (font-spec :name "Source Sans Pro"))
1300       (warn "Font not found Source Sans Pro")))
1301
1302   (set-face-attribute 'variable-pitch nil :font "Source Sans Pro" :height 160)
1303   (set-face-attribute 'fixed-pitch nil :font "Source Code Pro" :height (face-attribute 'default :height))
1304
1305
1306   ;; Install Ubuntu Mono fonts and apply it in org-table to align Chinese fonts
1307   (with-eval-after-load "org"
1308     (mapc (lambda (face)
1309             (set-face-attribute face nil :inherit 'fixed-pitch))
1310           (list
1311            'org-code
1312            'org-block
1313            'org-block-background
1314            'org-block-begin-line
1315            'org-block-end-line))
1316     (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height 100)
1317     (set-face-attribute 'org-formula nil :family "Ubuntu Mono" :height 100)
1318     ;; org-special-keyword inherited from font-lock-keywork originally; as org is changed to variable-pitch, it cause
1319     ;; the font in special-keywords are not monospace
1320     (set-face-attribute 'org-special-keyword nil :inherit '(font-lock-keyword-face fixed-pitch))
1321     ;; same as above 
1322     (set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch))
1323     (set-face-attribute 'org-block-begin-line nil :inherit 'shadow :slant 'italic :foreground nil)
1324     (set-face-attribute 'org-block-end-line nil :inherit 'shadow :slant 'italic :foreground nil)
1325     
1326     ;; fix indent broken by variable-pitch-mode
1327     ;; http://emacs.stackexchange.com/questions/26864/variable-pitch-face-breaking-indentation-in-org-mode
1328     (require 'org-indent)
1329     (set-face-attribute 'org-indent nil :inherit '(org-hide fixed-pitch)))
1330
1331   ;; (with-eval-after-load "org"
1332   ;;   (let ((default-font-size (- (face-attribute 'default :height) (if (display-graphic-p) 20 0))))
1333   ;;     (set-face-attribute 'org-code nil :height default-font-size)
1334   ;;     (set-face-attribute 'org-block nil :height default-font-size)
1335   ;;     (set-face-attribute 'org-block-begin-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1336   ;;     (set-face-attribute 'org-block-end-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1337   ;;     (when (find-font (font-spec :name "Ubuntu Mono"))
1338   ;;       (set-face-attribute 'org-table nil :family "Ubutu Mono" :height default-font-size)
1339   ;;       (set-face-attribute 'org-formula nil :family "Ubutu Mono" :height default-font-size))))
1340
1341   (add-hook 'org-mode-hook
1342             (lambda ()
1343               (let ((default-font-size (- (face-attribute 'default :height) (if (display-graphic-p) 20 0))))
1344                 (set-face-attribute 'org-code nil :height default-font-size)
1345                 (set-face-attribute 'org-block nil :height default-font-size)
1346                 (set-face-attribute 'org-block-begin-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1347                 (set-face-attribute 'org-block-end-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic :height default-font-size)
1348                 (when (find-font (font-spec :name "Ubuntu Mono"))
1349                   (set-face-attribute 'org-table nil :family "Ubutu Mono" :height default-font-size)
1350                   (set-face-attribute 'org-formula nil :family "Ubutu Mono" :height default-font-size)))))
1351 #+END_SRC
1352
1353 Also correct the face of  =org-meta-line= in =org-table= 
1354 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1355   (with-eval-after-load "org"
1356     (set-face-attribute 'org-meta-line nil :font "Source Code Pro" :height 120 :slant 'italic :inherit 'font-lock-comment-face))
1357 #+END_SRC
1358
1359 *** Org-head face
1360 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1361   ;; (with-eval-after-load "org"
1362   ;;   (let* ((base-height (face-attribute 'variable-pitch :height))
1363   ;;          (base-font-color (face-foreground 'default nil  'default)))
1364   ;;     (set-face-attribute 'org-document-title nil :weight 'bold :height (+ 60 base-height))
1365   ;;     (set-face-attribute 'org-level-1 nil :weight 'bold :height (+ 40 base-height))
1366   ;;     (set-face-attribute 'org-level-2 nil :weight 'bold :height (+ 30 base-height))
1367   ;;     (set-face-attribute 'org-level-3 nil :weight 'bold :height (+ 20 base-height))
1368   ;;     (set-face-attribute 'org-level-4 nil :weight 'bold :height (+ 10 base-height))
1369   ;;     (set-face-attribute 'org-level-5 nil :weight 'bold)
1370   ;;     (set-face-attribute 'org-level-6 nil :weight 'bold)
1371   ;;     (set-face-attribute 'org-level-7 nil :weight 'bold)
1372   ;;     (set-face-attribute 'org-level-8 nil :weight 'bold)))
1373 #+END_SRC
1374
1375 ** Org Blog
1376 Fetch dependencies file, which is not in this repository.
1377 #+BEGIN_SRC perl :results silent :tangle yes
1378   print `curl https://raw.githubusercontent.com/seudut/blog/master/my-publish.el -o ./elisp/my-publish.el`;
1379 #+END_SRC
1380
1381 Load 
1382 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1383   (add-to-list 'load-path "~/.emacs.d/elisp")
1384
1385   (when (file-exists-p "~/.emacs.d/elisp/my-publish.el")
1386     (require 'my-publish)
1387     (blog-setup-project-alist "~/Private/blog/"))
1388 #+END_SRC
1389
1390
1391 Refer to [[http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html][org-publish-html-tutorial]], and [[https://ogbe.net/blog/blogging_with_org.html][blogging_with_org]]
1392
1393 * Magit
1394 [[https://github.com/magit/magit][Magit]] is a very cool git interface on Emacs.
1395 and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github.com/abo-abo/oremacs/blob/c5cafdcebc88afe9e73cc8bd40c49b70675509c7/modes/ora-nextmagit.el][here]]
1396 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1397   (use-package magit
1398     :ensure t
1399     :init
1400     ;; don't ask me to confirm the unsaved change 
1401     (setq magit-save-repository-buffers nil)
1402     ;; default is 50
1403     (setq git-commit-summary-max-length 100)
1404     :commands magit-status magit-blame
1405     :config
1406     (dolist (map (list magit-status-mode-map
1407                        magit-log-mode-map
1408                        magit-diff-mode-map
1409                        magit-staged-section-map))
1410       (define-key map "j" 'magit-section-forward)
1411       (define-key map "k" 'magit-section-backward)
1412       (define-key map "D" 'magit-discard)
1413       (define-key map "O" 'magit-discard-file)
1414       (define-key map "n" nil)
1415       (define-key map "p" nil)
1416       (define-key map "v" 'recenter-top-bottom)
1417       (define-key map "i" 'magit-section-toggle))
1418     (define-key magit-mode-map "q" (lambda () (interactive)
1419                                      (magit-mode-bury-buffer t))))
1420 #+END_SRC
1421
1422 * Eshell
1423 ** Eshell alias
1424 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1425   (defalias 'e 'find-file)
1426   (defalias 'ff 'find-file)
1427   (defalias 'ee 'find-files)
1428 #+END_SRC
1429
1430 ** eshell temp directory
1431 set default eshell history folder
1432 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1433   (setq eshell-directory-name (concat  sd-temp-directory "eshell"))
1434 #+END_SRC
1435
1436 ** Eshell erase buffer
1437 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1438   (require 'utilities)
1439
1440   ;; (add-hook 'eshell-mode-hook (lambda ()
1441   ;;                               (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)))
1442   ;; (add-hook 'eshell-mode-map (lambda () (interactive)
1443   ;;                              (define-key eshell-mode-map (kbd "<tab>") 'completion-at-point)))
1444
1445   (defun sd/eshell-hook ()
1446     (interactive)
1447     (define-key eshell-mode-map (kbd "C-j") #'eshell-send-input)
1448     (define-key eshell-mode-map (kbd "C-l") #'sd/eshell-clear-buffer))
1449
1450   (add-hook 'eshell-mode-hook #'sd/eshell-hook)
1451
1452
1453   ;; (add-hook 'eshell-mode-hook (apply-partially #'local-set-key (kbd "C-l") 'sd/eshell-clear-buffer))
1454 #+END_SRC
1455
1456 ** Toggle Eshell
1457 Toggle an eshell in split window below, refer [[http://www.howardism.org/Technical/Emacs/eshell-fun.html][eshell-here]]
1458 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1459   (defun sd/window-has-eshell ()
1460     "Check if current windows list has a eshell buffer, and return the window"
1461     (interactive)
1462     (let ((ret nil))
1463       (walk-windows (lambda (window)
1464                       (if (equal (with-current-buffer (window-buffer window) major-mode)
1465                                  'eshell-mode)
1466                           (setq ret window)))
1467                     nil nil)
1468       ret))
1469
1470   (defun sd/toggle-project-eshell ()
1471     "Toggle a eshell buffer vertically"
1472     (interactive)
1473     (if (sd/window-has-eshell)
1474         (if (equal major-mode 'eshell-mode)
1475             (progn
1476               (if (equal (length (window-list)) 1)
1477                   (mode-line-other-buffer)
1478                 (delete-window)))
1479           (select-window (sd/window-has-eshell)))
1480       (progn
1481         (split-window-vertically (- (/ (window-total-height) 3)))
1482         (other-window 1)
1483         (if (projectile-project-p)
1484             (projectile-run-eshell)
1485           (eshell)))))
1486
1487   (global-set-key (kbd "s-e") 'sd/toggle-project-eshell)
1488 #+END_SRC
1489
1490 ** exec-path-from-shell
1491 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1492   (use-package exec-path-from-shell
1493     :ensure t
1494     :init
1495     (setq exec-path-from-shell-check-startup-files nil)
1496     :config
1497     (exec-path-from-shell-initialize))
1498 #+END_SRC
1499
1500 * Misc Settings
1501 ** [[https://github.com/abo-abo/hydra][Hydra]]
1502 *** hydra install
1503 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1504   (use-package hydra
1505     :ensure t
1506     ;; disable new line in minibuffer when hint hydra
1507     :init
1508     (setq hydra-lv nil))
1509 #+END_SRC
1510
1511 *** Windmove Splitter
1512
1513 Refer [[https://github.com/abo-abo/hydra/blob/master/hydra-examples.el][hydra-example]], to enlarge or shrink the windows splitter
1514
1515 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1516
1517   (defun hydra-move-splitter-left (arg)
1518     "Move window splitter left."
1519     (interactive "p")
1520     (if (let ((windmove-wrap-around))
1521           (windmove-find-other-window 'right))
1522         (shrink-window-horizontally arg)
1523       (enlarge-window-horizontally arg)))
1524
1525   (defun hydra-move-splitter-right (arg)
1526     "Move window splitter right."
1527     (interactive "p")
1528     (if (let ((windmove-wrap-around))
1529           (windmove-find-other-window 'right))
1530         (enlarge-window-horizontally arg)
1531       (shrink-window-horizontally arg)))
1532
1533   (defun hydra-move-splitter-up (arg)
1534     "Move window splitter up."
1535     (interactive "p")
1536     (if (let ((windmove-wrap-around))
1537           (windmove-find-other-window 'up))
1538         (enlarge-window arg)
1539       (shrink-window arg)))
1540
1541   (defun hydra-move-splitter-down (arg)
1542     "Move window splitter down."
1543     (interactive "p")
1544     (if (let ((windmove-wrap-around))
1545           (windmove-find-other-window 'up))
1546         (shrink-window arg)
1547       (enlarge-window arg)))
1548
1549 #+END_SRC
1550
1551 *** hydra misc
1552 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1553   (defhydra sd/hydra-misc (:color red :columns nil)
1554     "Misc"
1555     ("e" eshell "eshell" :exit t)
1556     ("p" (lambda ()
1557            (interactive)
1558            (if (not (eq nil (get-buffer "*Packages*")))
1559                (switch-to-buffer "*Packages*")
1560              (package-list-packages)))
1561      "list-package" :exit t)
1562     ("g" magit-status "git-status" :exit t)
1563     ("'" mode-line-other-buffer "last buffer" :exit t)
1564     ("C-'" mode-line-other-buffer "last buffer" :exit t)
1565     ("m" man "man" :exit t)
1566     ("d" dired-jump "dired" :exit t)
1567     ("b" ibuffer "ibuffer" :exit t)
1568     ("q" nil "quit")
1569     ("f" nil "quit"))
1570
1571   ;; (global-set-key (kbd "C-'") 'sd/hydra-misc/body)
1572
1573   (defun sd/exchange-win-layout ()
1574     "Change the windos layout."
1575     (interactive)
1576     (when (equal (length (window-list)) 2)
1577       (let ((current-layout (if (or (window-in-direction 'right) (window-in-direction 'left))
1578                                 'v
1579                               'h))
1580             (other-buf (window-buffer (or (window-in-direction 'right)
1581                                           (window-in-direction 'left)
1582                                           (window-in-direction 'below)
1583                                           (window-in-direction 'above)))))
1584         (delete-other-windows)
1585         (if (eq current-layout 'v)
1586             (split-window-below)
1587           (split-window-right))
1588         (other-window 1)
1589         (switch-to-buffer other-buf))))
1590
1591   (defhydra sd/hydra-window-layout (:color red :colums nil)
1592     "Window Layout"
1593     ("m" sd/toggle-max-windows "Max-win" :exit t)
1594     ("s" ace-swap-window "Swap" :exit t)
1595     ("d" ace-delete-window "Delete"  :exit t)
1596     ("x" sd/exchange-win-layout "eXchange"  :exit t)
1597     ("u" winner-undo "window-Undo"  :exit t)
1598     ("r" winner-redo "window-Redo"  :exit t))
1599
1600   (defhydra sd/hydra-gtags (:color red :colums nil)
1601     "ggtags - global"
1602     ("d" sd/ggtags-find-definition "Definition" :exit t)
1603     ("r" ggtags-find-reference "Reference" :exit t)
1604     ("s" sd/ggtags-find-symbol "Symbol" :exit t))
1605
1606   (defhydra sd/hydra-projectile (:color red :column nil)
1607     "Projectile: "
1608     ("s" projectile-switch-open-project "Switch" :exit t)
1609     ("f" projectile-find-file "File" :exit t)
1610     ("b" projectile-switch-to-buffer "Buffer" :exit t)
1611     ("p" projectile-switch-project "Project" :exit t))
1612 #+END_SRC
1613
1614 *** hydra launcher
1615 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1616   (defhydra sd/hydra-launcher (:color blue :columns 2)
1617     "Launch"
1618     ("e" emms "emms" :exit t)
1619     ("q" nil "cancel"))
1620 #+END_SRC
1621
1622 ** Line Number
1623 Enable linum mode on programming modes
1624 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1625   (add-hook 'prog-mode-hook 'linum-mode)
1626 #+END_SRC
1627
1628 Fix the font size of line number
1629 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1630   (defun fix-linum-size ()
1631     (interactive)
1632     (set-face-attribute 'linum nil :height 110))
1633
1634   (add-hook 'linum-mode-hook 'fix-linum-size)
1635 #+END_SRC
1636
1637 I like [[https://github.com/coldnew/linum-relative][linum-relative]], just like the =set relativenumber= on =vim=
1638 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1639   (use-package linum-relative
1640     :ensure t
1641     :init
1642     (setq linum-relative-current-symbol "")
1643     :config
1644     (defun linum-new-mode ()
1645       "If line numbers aren't displayed, then display them.
1646   Otherwise, toggle between absolute and relative numbers."
1647       (interactive)
1648       (if linum-mode
1649           (linum-relative-toggle)
1650         (linum-mode 1)))
1651
1652     :bind
1653     ("A-k" . linum-new-mode))
1654
1655   ;; auto enable linum-new-mode in programming modes
1656   (add-hook 'prog-mode-hook 'linum-relative-mode)
1657 #+END_SRC
1658
1659 ** Save File Position
1660 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1661   (require 'saveplace)
1662   (setq save-place-file "~/.emacs.d/temp/saveplace")
1663   (setq-default save-place t)
1664   (setq save-place-forget-unreadable-files t)
1665   (setq save-place-skip-check-regexp "\\`/\\(?:cdrom\\|floppy\\|mnt\\|/[0-9]\\|\\(?:[^@/:]*@\\)?[^@/:]*[^@/:.]:\\)")
1666 #+END_SRC
1667
1668 ** Multi-term
1669 define =multi-term= mapping to disable some mapping which is used globally.
1670 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1671   (use-package multi-term
1672     :ensure t)
1673
1674   (defun sd/term-mode-mapping ()
1675     (mapcar #'(lambda (map)
1676               (define-key map (kbd "C-o") nil)
1677               (define-key map (kbd "C-g") nil))
1678             (list term-mode-map
1679                   term-raw-map)))
1680
1681   (with-eval-after-load 'multi-term
1682     (sd/term-mode-mapping))
1683 #+END_SRC
1684
1685 ** ace-link
1686 [[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
1687 Type =o= to go to the link
1688 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1689   (use-package ace-link
1690     :ensure t
1691     :init
1692     (ace-link-setup-default))
1693 #+END_SRC
1694
1695 ** Smart Parens
1696 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1697   ;; (use-package smartparens
1698   ;;   :ensure t
1699   ;;   :config
1700   ;;   (progn
1701   ;;     (require 'smartparens-config)
1702   ;;     (add-hook 'prog-mode-hook 'smartparens-mode)))
1703 #+END_SRC
1704
1705 ** Ace-Windows
1706 [[https://github.com/abo-abo/ace-window][ace-window]] 
1707 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1708   (use-package ace-window
1709     :ensure t
1710     :defer t
1711                                           ;  :init
1712                                           ;  (global-set-key (kbd "M-o") 'ace-window)
1713     :config
1714     (setq aw-keys '(?a ?s ?d ?f ?j ?k ?l)))
1715 #+END_SRC
1716
1717 ** Which key
1718 [[https://github.com/justbur/emacs-which-key][which-key]] show the key bindings 
1719 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1720   ;; (use-package which-key
1721   ;;   :ensure t
1722   ;;   :config
1723   ;;   (which-key-mode))
1724 #+END_SRC
1725
1726 ** View only for some directory
1727 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]]
1728 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1729   (dir-locals-set-class-variables
1730    'emacs
1731    '((nil . ((buffer-read-only . t)
1732              (show-trailing-whitespace . nil)
1733              (tab-width . 8)
1734              (eval . (whitespace-mode -1))
1735              ;; (eval . (when buffer-file-name
1736              ;;           (setq-local view-no-disable-on-exit t)
1737              ;;           (view-mode-enter)))
1738              (projectile-enable-caching . nil)
1739              ))))
1740
1741   ;; (dir-locals-set-directory-class (expand-file-name "/usr/local/share/emacs") 'emacs)
1742   (dir-locals-set-directory-class "/usr/local/Cellar/emacs" 'emacs)
1743   ;; (dir-locals-set-directory-class "~/.emacs.d/elpa" 'emacs)
1744   (dir-locals-set-directory-class "~/dotfiles/emacs.d/elpa" 'emacs)
1745   (dir-locals-set-directory-class "~/dotfiles/emacs.d/el-get" 'emacs)
1746
1747   ;; temp-mode.el
1748   ;; Temporary minor mode
1749   ;; Main use is to enable it only in specific buffers to achieve the goal of
1750   ;; buffer-specific keymaps
1751
1752   ;; (defvar sd/temp-mode-map (make-sparse-keymap)
1753   ;;   "Keymap while temp-mode is active.")
1754
1755   ;; ;;;###autoload
1756   ;; (define-minor-mode sd/temp-mode
1757   ;;   "A temporary minor mode to be activated only specific to a buffer."
1758   ;;   nil
1759   ;;   :lighter " Temp"
1760   ;;   sd/temp-mode-map)
1761
1762   ;; (defun sd/temp-hook ()
1763   ;;   (if sd/temp-mode
1764   ;;       (progn
1765   ;;      (define-key sd/temp-mode-map (kbd "q") 'quit-window))))
1766
1767   ;; (add-hook 'lispy-mode-hook (lambda ()
1768   ;;                           (sd/temp-hook)))
1769 #+END_SRC
1770
1771 ** Info plus
1772 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1773   (el-get-bundle info+
1774     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el"
1775     ;; (require 'info+)
1776     )
1777
1778   (with-eval-after-load 'info
1779     (require 'info+))
1780 #+END_SRC
1781
1782 ** advice info
1783 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1784   (defun sd/info-mode ()
1785     (interactive)
1786     (unless (equal major-mode 'Info-mode)
1787       (unless (> (length (window-list)) 1)
1788         (split-window-right))
1789       (other-window 1)))
1790
1791   ;; open Info buffer in other window instead of current window
1792   (defadvice info (before my-info (&optional file buf) activate)
1793     (sd/info-mode))
1794
1795   (defadvice Info-exit (after my-info-exit activate)
1796     (sd/delete-current-window))
1797 #+END_SRC
1798
1799 ** Demo It
1800 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1801   (use-package org-tree-slide
1802     :ensure t)
1803 #+END_SRC
1804
1805 ** Presentation
1806 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1807   (use-package org-tree-slide
1808     :ensure
1809     :config
1810     ;; (define-key org-mode-map "\C-ccp" 'org-tree-slide-mode)
1811     (define-key org-tree-slide-mode-map (kbd "<ESC>") 'org-tree-slide-content)
1812     (define-key org-tree-slide-mode-map (kbd "<SPACE>") 'org-tree-slide-move-next-tree)
1813     (define-key org-tree-slide-mode-map [escape] 'org-tree-slide-move-previous-tree))
1814 #+END_SRC
1815
1816 ** pdf-tools
1817 #+BEGIN_SRC sh
1818   #brew install poppler
1819 #+END_SRC
1820
1821 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1822   ;(use-package pdf-tools
1823   ;  :ensure t
1824   ;  :init
1825   ;  ;; run to complete the installation
1826   ;  (pdf-tools-install)
1827   ;  :config
1828   ;  (add-to-list 'auto-mode-alist '("\.pdf$" . pdf-view-mode))
1829   ;  (add-hook 'pdf-outline-buffer-mode-hook #'sd/pdf-outline-map))
1830
1831   ;(defun sd/pdf-outline-map ()
1832   ;  "My keybindings in pdf-outline-map"
1833   ;  (interactive)
1834   ;  (define-key pdf-outline-buffer-mode-map (kbd "C-o") nil)
1835   ;  (define-key pdf-outline-buffer-mode-map (kbd "i") 'outline-toggle-children)
1836   ;  (define-key pdf-outline-buffer-mode-map (kbd "j") 'next-line)
1837    ; (define-key pdf-outline-buffer-mode-map (kbd "k") 'previous-line))
1838 #+END_SRC
1839
1840 ** help-mode
1841 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1842   (defun sd/help-mode-hook ()
1843     "Mapping for help mode"
1844     (define-key help-mode-map "j" 'next-line)
1845     (define-key help-mode-map "k" 'previous-line)
1846     (define-key help-mode-map "h" 'forward-char)
1847     (define-key help-mode-map "l" 'forward-char)
1848     (define-key help-mode-map "H" 'describe-mode)
1849     (define-key help-mode-map "v" 'recenter-top-bottom)
1850     (define-key help-mode-map "i" 'forward-button)
1851     (define-key help-mode-map "I" 'backward-button)
1852     (define-key help-mode-map "o" 'ace-link-help))
1853
1854   (add-hook 'help-mode-hook 'sd/help-mode-hook)
1855 #+END_SRC
1856
1857 Wiki [[http://stackoverflow.com/questions/3480173/show-keys-in-emacs-keymap-value][show-keys-in-emacs-keymap-value]], Helpplus mode can show keymap as human-readable, use ~describe-keymap~ or =C-h M-k=
1858
1859 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1860   (el-get-bundle help-macro+
1861     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-macro+.el"
1862     :features help-macro+)
1863   (el-get-bundle help+
1864     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help+.el"
1865     :features help+)
1866   (el-get-bundle help-fns+
1867     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-fns+.el"
1868     :features help-fns+)
1869   (el-get-bundle help-mode+
1870     :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/help-mode+.el"
1871     :features help-mode+)
1872 #+END_SRC
1873
1874 ** goto-last-change
1875 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1876   ;; (use-package goto-last-change
1877   ;;   :ensure t)
1878 #+END_SRC
1879
1880 ** Ag
1881 install =ag=, =the-silver-searcher= by homebrew on mac
1882 #+BEGIN_SRC sh
1883 brew install the-silver-searcher
1884 #+END_SRC
1885
1886 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1887   (use-package ag
1888     :ensure t)
1889 #+END_SRC
1890
1891 ** Local Variable hooks
1892 [[https://www.emacswiki.org/emacs/LocalVariables][LocalVariables]], use =hack-local-variables-hook=, run a hook to set local variable in mode hook
1893 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1894   ;; make Emacs run a new "local variables hook" for each major mode
1895   (add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
1896
1897   (defun run-local-vars-mode-hook ()
1898     "Run a hook for the major-mode after the local variables have been processed."
1899     (run-hooks (intern (concat (symbol-name major-mode) "-local-vars-hook"))))
1900
1901   ;;   (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
1902 #+END_SRC
1903
1904 ** Table
1905 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1906   (add-hook 'text-mode-hook 'table-recognize)
1907 #+END_SRC
1908
1909 ** url-download
1910 To download file in =elisp=, best is =url-copy-file=, here refer [[http://stackoverflow.com/questions/4448055/download-a-file-with-emacs-lisp][download-a-file-with-emacs-lisp]] using =url-retrieve-synchronously= wrapping
1911 as a http download client tool
1912 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1913   (defun sd/download-file (&optional url download-dir download-name)
1914     (interactive)
1915     (let ((url (or url
1916                    (read-string "Enter download URL: ")))
1917           (download-dir (read-directory-name "Save to (~/Downloads): " "~/Downloads" "~/Downloads" 'confirm' nil)))
1918       (let ((download-buffer (url-retrieve-synchronously url)))
1919         (save-excursion
1920           (set-buffer download-buffer)
1921           ;; we may have to trim the http response
1922           (goto-char (point-min))
1923           (re-search-forward "^$" nil 'move)
1924           (forward-char)
1925           (delete-region (point-min) (point))
1926           (write-file (concat (or download-dir
1927                                   "~/Downloads/")
1928                               (or download-name
1929                                   (car (last (split-string url "/" t))))))))))
1930 #+END_SRC
1931
1932 * Dired
1933 ** Dired basic
1934 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1935   (setq dired-dwim-target t)
1936
1937   (use-package dired-details
1938     :ensure t
1939     :config
1940     (setq-default dired-details-hidden-string "--- ")
1941     (dired-details-install))
1942 #+END_SRC
1943
1944 ** Dired functions
1945 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1946   (defun sd/dired-next-line (count)
1947     "Move to next line, and always focus on the file name."
1948     (interactive "p")
1949     (dired-next-line count)
1950     (dired-move-to-filename))
1951
1952   (defun sd/dired-previous-line (count)
1953     "Move to previous line, and always focus on the file name."
1954     (interactive "p")
1955     (dired-previous-line count)
1956     (dired-move-to-filename))
1957
1958   (defun sd/dired-up-directory ()
1959     "Go to up directory"
1960     (interactive)
1961     (let ((old (current-buffer)))
1962       (dired-up-directory)
1963       (kill-buffer old)))
1964 #+END_SRC
1965
1966 ** Dired bindings
1967 =C-o= is defined as a global key for window operation, here unset it in dired mode
1968 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
1969   (defun sd/dired-key-map ()
1970     "My keybindings for dired"
1971     (interactive)
1972     ;; these two prefix are used globally
1973     (define-key dired-mode-map (kbd "C-o") nil)
1974     (define-key dired-mode-map (kbd "M-s") nil)
1975     ;; toggle hidden files
1976     (define-key dired-mode-map (kbd "H") 'dired-omit-mode)
1977     ;; scroll 
1978     (define-key dired-mode-map (kbd "SPC") 'scroll-up-command)
1979     (define-key dired-mode-map (kbd "DEL") 'scroll-down-command)
1980     (define-key dired-mode-map (kbd "j") 'diredp-next-line)
1981     (define-key dired-mode-map (kbd "k") 'diredp-previous-line)
1982     (define-key dired-mode-map (kbd "g") 'dired-goto-file)
1983     ;; (define-key dired-mode-map (kbd "S-SPC") 'scroll-down-command)
1984     ;; jump to fil/dirs
1985     (define-key dired-mode-map (kbd "f") 'dired-isearch-filenames)
1986     ;; subdir
1987     ;; i dired-maybe-insert-subdir
1988     ;; o dired-find-file-other-window (switch to other window)
1989     ;; O dired-display-file
1990     (define-key dired-mode-map (kbd "G") 'ido-dired)
1991     (define-key dired-mode-map (kbd "c") 'sd/dired-new-file)
1992     (define-key dired-mode-map (kbd "h") 'dired-summary)
1993     (define-key dired-mode-map (kbd "r") 'revert-buffer)
1994     (define-key dired-mode-map (kbd "l") 'dired-display-file)
1995     (define-key dired-mode-map [C-backspace] 'dired-up-directory)
1996     (define-key dired-mode-map (kbd "?") 'describe-mode)
1997     (define-key dired-mode-map (kbd "z") #'sd/dired-get-size)
1998     (define-key dired-mode-map (kbd "C-d") 'dired-kill-subdir)
1999     (define-key dired-mode-map (kbd "M-d") 'dired-kill-subdir)
2000     (define-key dired-mode-map (kbd "J") 'diredp-next-subdir)
2001     (define-key dired-mode-map (kbd "TAB") 'diredp-next-subdir)
2002     (define-key dired-mode-map (kbd "K") 'diredp-prev-subdir)
2003     (define-key dired-mode-map (kbd "O") 'dired-display-file)
2004     (define-key dired-mode-map (kbd "I") 'other-window)
2005     (define-key dired-mode-map (kbd "o") 'other-window)) 
2006
2007   (use-package dired
2008     :config
2009     (require 'dired-x)
2010     ;; also load dired+
2011     (use-package dired+
2012       :ensure t
2013       :init (setq diredp-hide-details-initially-flag nil))
2014     
2015     (setq dired-omit-mode t)
2016     (setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
2017     (add-hook 'dired-mode-hook (lambda ()
2018                                  (sd/dired-key-map)
2019                                  (dired-omit-mode))))
2020
2021   (defadvice dired-summary (around sd/dired-summary activate)
2022     "Revisied dired summary."
2023     (interactive)
2024     (dired-why)
2025     (message
2026      "Δ: d-delete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, c-create, +new dir, r-evert, /-filter, v-iew, l-ist, z-Size, h-summary, ?-help"))
2027
2028   (defun sd/dired-high-level-dir ()
2029     "Go to higher level directory"
2030     (interactive)
2031     (find-alternate-file ".."))
2032 #+END_SRC
2033
2034 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2035   (defun sd/dired-new-file-and-open ()
2036     "Create a new file in dired mode"
2037     (interactive)
2038     (call-interactively 'find-file))
2039
2040   (defun sd/dired-new-file (file)
2041     "Create a new file called FILE.
2042   If FILE already exists, signal an error."
2043     (interactive
2044      (list (read-file-name "Create file: " (dired-current-directory))))
2045     (let* ((expanded (expand-file-name file)))
2046       (if (file-exists-p expanded)
2047           (error "Cannot create file %s: file exists" expanded))
2048       (write-region "" nil expanded t)
2049       (when expanded
2050         (dired-add-file expanded)
2051         (dired-move-to-filename))))
2052
2053   ;; copied from abo-abo's config
2054   (defun sd/dired-get-size ()
2055     (interactive)
2056     (let ((files (dired-get-marked-files)))
2057       (with-temp-buffer
2058         (apply 'call-process "/usr/bin/du" nil t nil "-sch" files)
2059         (message
2060          "Size of all marked files: %s"
2061          (progn
2062            (re-search-backward "\\(^[ 0-9.,]+[A-Za-z]+\\).*total$")
2063            (match-string 1))))))
2064 #+END_SRC
2065
2066 ** disable ido when dired new file
2067 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
2068 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’]]
2069 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2070   (defun mk-anti-ido-advice (func &rest args)
2071     "Temporarily disable IDO and call function FUNC with arguments ARGS."
2072     (interactive)
2073     (let ((read-file-name-function #'read-file-name-default)
2074           (completing-read-function #'completing-read-default))
2075       (if (called-interactively-p 'any)
2076           (call-interactively func)
2077         (apply func args))))
2078
2079   (defun mk-disable-ido (command)
2080     "Disable IDO when command COMMAND is called."
2081     (advice-add command :around #'mk-anti-ido-advice))
2082
2083   (defun mk-anti-ido-no-completing-advice (func &rest args)
2084     "Temporarily disable IDO and call function FUNC with arguments ARGS."
2085     (interactive)
2086     (let ((read-file-name-function #'read-file-name-default)
2087           ;; (completing-read-function #'completing-read-default)
2088           )
2089       (if (called-interactively-p 'any)
2090           (call-interactively func)
2091         (apply func args))))
2092
2093   (defun mk-disable-ido-no-completing (command)
2094     "Disable IDO when command COMMAND is called."
2095     (advice-add command :around #'mk-anti-ido-no-completing-advice))
2096 #+END_SRC
2097
2098 Disalble =ido= when new a directory or file in =dired= mode
2099 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2100   ;; call the function which you want to disable ido
2101   (mk-disable-ido 'dired-create-directory)
2102   (mk-disable-ido 'sd/dired-new-file-and-open)
2103   (mk-disable-ido 'sd/dired-new-file)
2104   (mk-disable-ido-no-completing 'dired-goto-file)
2105 #+END_SRC
2106
2107 ** Dired open with
2108 =!= =dired-do-shell-command=
2109 =&= =dired-do-async-shell-command=
2110 here on Mac, just use "open" commands to pen =.pdf=,  =.html= and image files
2111 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2112   (setq dired-guess-shell-alist-user
2113         '(("\\.pdf\\'" "open" "okular")
2114           ("\\.\\(?:djvu\\|eps\\)\\'" "evince")
2115           ("\\.\\(?:jpg\\|jpeg\\|png\\|gif\\|xpm\\)\\'" "open")
2116           ("\\.\\(?:xcf\\)\\'" "gimp")
2117           ("\\.csv\\'" "libreoffice")
2118           ("\\.tex\\'" "pdflatex" "latex")
2119           ("\\.\\(?:mp4\\|mkv\\|avi\\|rmvb\\|flv\\|ogv\\)\\(?:\\.part\\)?\\'" "mplayer")
2120           ("\\.\\(?:mp3\\|flac\\|wav\\)\\'" "mplayer")
2121           ("\\.html?\\'" "open")
2122           ("\\.dmg\\'" "open")
2123           ("\\.cue?\\'" "audacious")))
2124
2125
2126   (defun sd/dired-start-process (cmd &optional file-list)
2127     (interactive
2128      (let ((files (dired-get-marked-files t current-prefix-arg)))
2129        (list
2130         (dired-read-shell-command "& on %s: " current-prefix-arg files)
2131         files)))
2132     
2133     ;; (let (list-switch))
2134     (start-process
2135      cmd nil shell-file-name
2136      shell-command-switch
2137      (format
2138       "nohup 1>/dev/null 2>/dev/null %s \"%s\""
2139       cmd
2140       ;; (if (and (> (length file-list) 1)
2141       ;;          (setq list-switch
2142       ;;                (cadr (assoc cmd ora-dired-filelist-cmd))))
2143       ;;     (format "%s %s" cmd list-switch)
2144       ;;   cmd)
2145       (mapconcat #'expand-file-name file-list "\" \""))))
2146
2147
2148
2149 #+END_SRC
2150
2151 ** dired-hacks
2152 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2153   (use-package dired-hacks-utils
2154     :ensure t
2155     :defer t)
2156 #+END_SRC
2157
2158 ** dired-narrow
2159 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2160   ;;narrow dired to match filter
2161   (use-package dired-narrow
2162     :ensure t
2163     :commands (dired-narrow)
2164     :bind (:map dired-mode-map
2165                 ("/" . dired-narrow)))
2166 #+END_SRC
2167
2168 * Ibuffer
2169 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2170   (global-set-key (kbd "s-b") 'ibuffer)
2171
2172   (with-eval-after-load 'ibuffer
2173     (define-key ibuffer-mode-map (kbd "C-o") nil)
2174     (define-key ibuffer-mode-map (kbd "j") 'ibuffer-forward-line)
2175     (define-key ibuffer-mode-map (kbd "k") 'ibuffer-backward-line)
2176     (define-key ibuffer-mode-map (kbd "r") 'ibuffer-update)
2177     (define-key ibuffer-mode-map (kbd "g") 'ibuffer-jump-to-buffer)
2178     (define-key ibuffer-mode-map (kbd "h") 'sd/ibuffer-summary))
2179
2180   (defun sd/ibuffer-summary ()
2181     "Show summary of keybindings in ibuffer mode"
2182     (interactive)
2183     (message
2184      "Β: m|u - (un)mark, /-filter, //-remove filter, t, RET, g, k, S, D, Q; q to quit; h for help"))
2185 #+END_SRC
2186
2187 * Completion
2188 ** company mode and company-statistics
2189 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2190   (use-package company
2191     :ensure t
2192     :diminish company-mode
2193     :init (setq company-idle-delay 0.1)
2194     (setq company-selection-wrap-around t)
2195     :config
2196     (define-key company-active-map (kbd "M-n") nil)
2197     (define-key company-active-map (kbd "M-p") nil)
2198     (define-key company-active-map (kbd "SPC") #'sd/company-stop-input-space)
2199     (define-key company-active-map (kbd "C-n") #'company-select-next)
2200     (define-key company-active-map (kbd "C-p") #'company-select-previous)
2201     ;; should map both (kbd "TAB") and [tab],https://github.com/company-mode/company-mode/issues/75
2202     (define-key company-active-map (kbd "TAB") #'company-complete-selection)
2203     (define-key company-active-map [tab] #'company-complete-selection)
2204     (define-key company-active-map (kbd "C-w") nil)
2205     (define-key company-active-map (kbd "C-h") nil)
2206     (global-company-mode)
2207     ;; magig-commit is text-modeh
2208     (setq company-global-modes '(not org-mode magit-status-mode text-mode eshell-mode gfm-mode markdown-mode)))
2209
2210   (use-package company-statistics
2211     :ensure t
2212     :init
2213     (setq company-statistics-file (concat MY-EMACS-TMP "/company-statistics-cache.el"))
2214     :config
2215     (company-statistics-mode))
2216
2217   (defun sd/company-stop-input-space ()
2218     "Stop completing and input a space,a workaround of a semantic issue `https://github.com/company-mode/company-mode/issues/614'"
2219     (interactive)
2220     (company-abort)
2221     (insert " "))
2222 #+END_SRC
2223
2224 ** YASnippet
2225 *** yasnippet
2226 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2227   (use-package yasnippet
2228     :ensure t
2229     :defer t
2230     :init
2231     (add-hook 'prog-mode-hook #'yas-minor-mode)
2232     :config
2233     (yas-reload-all))
2234 #+END_SRC
2235
2236 ** YouCompleteMe
2237 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2238   (use-package ycmd
2239     :ensure t
2240     :init
2241     (use-package company-ycmd
2242       :ensure t
2243       :init
2244       (setq company-ycmd-enable-fuzzy-matching nil)
2245       :config
2246       (company-ycmd-setup))
2247     (setq ycmd-force-semantic-completion t)
2248     (add-hook 'c++-mode-hook 'ycmd-mode)
2249     (add-hook 'c-mode-hook 'ycmd-mode)
2250     (set-variable 'ycmd-server-command '("python" "/Users/peng/project/ycmd/ycmd"))
2251     (set-variable 'ycmd-global-config "/Users/peng/project/ycmd/cpp/ycm/.ycm_extra_conf.py"))
2252 #+END_SRC
2253
2254
2255 ** company and yasnippet
2256 Add yasnippet as the company candidates
2257 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2258   ;Add yasnippet support for all company backends
2259   ;https://github.com/syl20bnr/spacemacs/pull/179
2260   (defvar company-mode/enable-yas t
2261     "Enable yasnippet for all backends.")
2262
2263   (defun company-mode/backend-with-yas (backend)
2264     (if (or (not company-mode/enable-yas) (and (listp backend) (member 'company-yasnippet backend)))
2265         backend
2266       (append (if (consp backend) backend (list backend))
2267               '(:with company-yasnippet))))
2268
2269   (setq company-backends (mapcar #'company-mode/backend-with-yas company-backends))
2270 #+END_SRC
2271
2272 Refer, [[http://emacs.stackexchange.com/questions/7908/how-to-make-yasnippet-and-company-work-nicer][how-to-make-yasnippet-and-company-work-nicer]]
2273 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2274   (defun check-expansion ()
2275     (save-excursion
2276       (if (looking-at "\\_>") t
2277         (backward-char 1)
2278         (if (looking-at "\\.") t
2279           (backward-char 1)
2280           (if (looking-at "->") t nil)))))
2281
2282   (defun do-yas-expand ()
2283     (let ((yas/fallback-behavior 'return-nil))
2284       (yas/expand)))
2285
2286   (defun tab-indent-or-complete ()
2287     (interactive)
2288     (cond
2289      ((minibufferp)
2290       (minibuffer-complete))
2291      (t
2292       (indent-for-tab-command)
2293       (if (or (not yas/minor-mode)
2294               (null (do-yas-expand)))
2295           (if (check-expansion)
2296               (progn
2297                 (company-manual-begin)
2298                 (if (null company-candidates)
2299                     (progn
2300                       (company-abort)
2301                       (indent-for-tab-command)))))))))
2302
2303   (defun tab-complete-or-next-field ()
2304     (interactive)
2305     (if (or (not yas/minor-mode)
2306             (null (do-yas-expand)))
2307         (if company-candidates
2308             (company-complete-selection)
2309           (if (check-expansion)
2310               (progn
2311                 (company-manual-begin)
2312                 (if (null company-candidates)
2313                     (progn
2314                       (company-abort)
2315                       (yas-next-field))))
2316             (yas-next-field)))))
2317
2318   (defun expand-snippet-or-complete-selection ()
2319     (interactive)
2320     (if (or (not yas/minor-mode)
2321             (null (do-yas-expand))
2322             (company-abort))
2323         (company-complete-selection)))
2324
2325   (defun abort-company-or-yas ()
2326     (interactive)
2327     (if (null company-candidates)
2328         (yas-abort-snippet)
2329       (company-abort)))
2330
2331   '
2332   ;; (require 'company)
2333   ;; (require 'yasnippet)
2334
2335
2336   ;; (global-set-key [tab] 'tab-indent-or-complete)
2337   ;; (global-set-key (kbd "TAB") 'tab-indent-or-complete)
2338   ;; (global-set-key [(control return)] 'company-complete-common)
2339
2340   ;; (define-key company-active-map [tab] 'expand-snippet-or-complete-selection)
2341   ;; (define-key company-active-map (kbd "TAB") 'expand-snippet-or-complete-selection)
2342
2343   ;; (define-key yas-minor-mode-map [tab] nil)
2344   ;; (define-key yas-minor-mode-map (kbd "TAB") nil)
2345
2346   ;; (define-key yas-keymap [tab] 'tab-complete-or-next-field)
2347   ;; (define-key yas-keymap (kbd "TAB") 'tab-complete-or-next-field)
2348   ;; (define-key yas-keymap [(control tab)] 'yas-next-field)
2349   ;; (define-key yas-keymap (kbd "C-g") 'abort-company-or-yas)
2350 #+END_SRC
2351
2352 * Libs
2353 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2354   (use-package s
2355     :ensure t)
2356 #+END_SRC
2357
2358 * Programming Language
2359 ** Color identiifiers mode
2360 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2361   (use-package color-identifiers-mode
2362     :ensure t
2363     :init
2364     (dolist (mode '(emacs-lisp-mode-hook
2365                     c-mode-hook
2366                     c++-mode-hook))
2367       (add-hook mode #'color-identifiers-mode))
2368     :diminish color-identifiers-mode)
2369
2370   (global-prettify-symbols-mode t)
2371 #+END_SRC
2372 ** Font lock face
2373
2374 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2375   (set-face-attribute 'font-lock-keyword-face nil :foreground "#F92672"  :weight 'bold)
2376   (set-face-attribute 'font-lock-builtin-face nil :weight 'bold)
2377   (set-face-attribute 'font-lock-function-name-face nil :foreground "#A6E22E" :weight 'normal :slant 'normal)
2378   (set-face-attribute 'font-lock-variable-name-face nil :foreground "#00FF00")
2379
2380   (dolist (mode '(c-mode
2381                   c++-mode))
2382     (font-lock-add-keywords mode
2383                             ;; highlight %s \n
2384                             '(("\\([%\\][a-zA-Z]\\)" (1  font-lock-keyword-face prepend))
2385                               ("[^[:alpha:]]\\([[:digit:]]*\\)[^[:alpha:]]" (1 font-lock-constant-face append))
2386                               ;; hex number
2387                               ("[^[:alpha:]]\\(0[x\\|X][0-9a-fA-F]*\\)[^[:alpha:]]" (1 font-lock-constant-face append))
2388                               ;; hightlight the function call
2389                               ("\\s\"?\\(\\(\\sw\\|\\s_\\)+\\(<-\\)?\\)\\s\"?*\\s-*(" (1 font-lock-function-name-face))) t))
2390
2391   (font-lock-add-keywords 'c++-mode
2392                           '(
2393                             ("[\s\\|::]\\(cin\\|cout\\|endl\\)[^[:alpha:][:digit:]]" (1 font-lock-constant-face append))
2394                             ) t)
2395 #+END_SRC
2396
2397 ** Emacs Lisp
2398 In Lisp Mode, =M-o= is defined, but I use this for global hydra window. So here disable this key
2399 bindings in =lispy-mode-map= after loaded. see [[http://stackoverflow.com/questions/298048/how-to-handle-conflicting-keybindings][here]]
2400 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2401   (use-package lispy
2402     :ensure t
2403     :init
2404     (setq lispy-delete-backward-recenter 0)
2405     (with-eval-after-load "lispy"
2406       (define-key lispy-mode-map (kbd "M-o") nil)
2407       (define-key lispy-mode-map (kbd "g") 'special-lispy-goto-local)
2408       (define-key lispy-mode-map (kbd "G") 'special-lispy-goto)
2409       (define-key lispy-mode-map (kbd "M-m") 'back-to-indentation))
2410     :config
2411     (add-hook 'emacs-lisp-mode-hook (apply-partially #'lispy-mode 1)))
2412 #+END_SRC
2413
2414 ** Perl
2415 *** CPerl mode
2416 [[https://www.emacswiki.org/emacs/CPerlMode][CPerl mode]] has more features than =PerlMode= for perl programming. Alias this to =CPerlMode=
2417 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2418   (defalias 'perl-mode 'cperl-mode)
2419
2420   ;; (setq cperl-hairy t)
2421   ;; Turns on most of the CPerlMode options
2422   (setq cperl-auto-newline t)
2423   (setq cperl-highlight-variables-indiscriminately t)
2424   ;(setq cperl-indent-level 4)
2425   ;(setq cperl-continued-statement-offset 4)
2426   (setq cperl-close-paren-offset -4)
2427   (setq cperl-indent-parents-as-block t)
2428   (setq cperl-tab-always-indent t)
2429   ;(setq cperl-brace-offset  0)
2430
2431   (add-hook 'cperl-mode-hook (apply-partially #'cperl-set-style "C++"))
2432
2433   (defalias 'perldoc 'cperl-perldoc)
2434 #+END_SRC
2435
2436 *** Perl template
2437 Refer [[https://www.emacswiki.org/emacs/AutoInsertMode][AutoInsertMode]] Wiki
2438 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2439   (eval-after-load 'autoinsert
2440     '(define-auto-insert '("\\.pl\\'" . "Perl skeleton")
2441        '(
2442          "Empty"
2443          "#!/usr/bin/perl -w" \n
2444          \n
2445          "use strict;" >  \n \n
2446          > _
2447          )))
2448 #+END_SRC
2449
2450 *** Perl Keywords
2451 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2452   (font-lock-add-keywords 'cperl-mode
2453                           '(("\\(say\\)" . cperl-nonoverridable-face)
2454                             ("\\([0-9.]\\)*" . font-lock-constant-face)
2455                             ("\".*\\(\\\n\\).*\"" 1 font-lock-constant-face prepend)
2456                             ("\n" 0 font-lock-constant-face prepend)
2457                             ;; ("[%\\][[:alpha:]]" . font-lock-constant-face)
2458                             ("\\(^#!.*\\)$" .  cperl-nonoverridable-face)))
2459 #+END_SRC
2460
2461 ** C & C++
2462 C/C++ ide tools
2463 1. completion (file name, function name, variable name)
2464 2. template yasnippet (keywords, if, function)
2465 3. tags jump
2466 *** c/c++ style
2467 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2468   ;; (setq c-default-style "stroustrup"
2469   ;;       c-basic-offset 4)
2470
2471   ;; ;; "C-M-j" is my global binding for avy goto line below
2472   ;; ;; disable it in c mode
2473   ;; (mapcar #'(lambda (map)
2474   ;;            (define-key map (kbd "C-M-j") nil))
2475   ;;         (list c-mode-map
2476   ;;               c++-mode-map
2477   ;;               objc-mode-map))
2478
2479   ;; objective c
2480   (add-to-list 'auto-mode-alist '("\\.mm\\'" . objc-mode))
2481
2482   (setq-default c-hungry-delete-key t)
2483
2484
2485   ;; Looks `c-hanging-braces-alist' doesn't work as expected when  `electric-pair-mode' is enabled.
2486   (electric-pair-mode 1)
2487
2488   (defconst sd/c-style
2489     '("stroustrup"
2490       (c-tab-always-indent . t)
2491       (c-basic-offset . 4)
2492       (c-hanging-braces-alist . ((substatement-open before)
2493                                  (statement-block-intro before)))
2494       (c-hanging-colons-alist . ())
2495       (c-echo-syntactic-information-p . nil)
2496       (c-hanging-semi&comma-criteria . ()))
2497     "My C programming style")
2498
2499   (c-add-style "sd-c-style" sd/c-style)
2500
2501   (setq c-default-style "sd-c-style")
2502
2503   (add-hook 'c-mode-hook '(lambda ()
2504                             (c-toggle-auto-newline 1)
2505                             (c-set-style "sd-c-style")))
2506
2507   ;; (advice-add 'c-electric-brace :after (lambda (arg) "Add new line after insert {}" (newline-and-indent)))
2508 #+END_SRC
2509 *** irony
2510 **** install irony server
2511 Install clang, on mac, it has =libclang.dylib=, but no develop headers. Install by =brew=
2512 #+BEGIN_SRC sh
2513   brew install llvm --with-clang
2514 #+END_SRC
2515
2516 then install irony searver, and =LIBCLANG_LIBRARY= and =LIBCLANG_INCLUDE_DIR= accordingly
2517 #+BEGIN_SRC emacs-lisp :tangle no :results silent
2518   (irony-install-server)
2519 #+END_SRC
2520
2521 #+BEGIN_SRC sh
2522   cmake -DLIBCLANG_LIBRARY\=/usr/local/Cellar/llvm/4.0.1/lib/libclang.dylib \
2523         -DLIBCLANG_INCLUDE_DIR=/usr/local/Cellar/llvm/4.0.1/include \
2524         -DCMAKE_INSTALL_PREFIX\=/Users/peng/.emacs.d/irony/ \
2525         /Users/peng/.emacs.d/elpa/irony-20160713.1245/server && cmake --build . --use-stderr --config Release --target install 
2526 #+END_SRC
2527
2528 **** irony config
2529 irony-mode-hook, copied from [[https://github.com/Sarcasm/irony-mode][irony-mode]] github
2530 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2531   ;; (use-package irony
2532   ;;   :ensure t
2533   ;;   :init
2534   ;;   (add-hook 'c++-mode-hook 'irony-mode)
2535   ;;   (add-hook 'c-mode-hook 'irony-mode)
2536   ;;   (add-hook 'objc-mode-hook 'irony-mode))
2537
2538   ;; replace the `completion-at-point' and `complete-symbol' bindings in
2539   ;; irony-mode's buffers by irony-mode's function
2540
2541   (defun my-irony-mode-hook ()
2542     (define-key irony-mode-map [remap completion-at-point]
2543       'irony-completion-at-point-async)
2544     (define-key irony-mode-map [remap complete-symbol]
2545       'irony-completion-at-point-async))
2546
2547   ;; (add-hook 'irony-mode-hook 'my-irony-mode-hook)
2548   ;; (add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)
2549
2550   ;; (add-hook 'c++-mode-local-vars-hook #'sd/c++-mode-local-vars)
2551
2552   ;; add C++ completions, because by default c++ file can not complete
2553   ;; c++ std functions, another method is create .dir-local.el file, for p
2554   ;; for project see irony
2555   (defun sd/c++-mode-local-vars ()
2556     (setq irony--compile-options
2557         '("-std=c++11"
2558           "-stdlib=libc++"
2559           "-I/usr/include/c++/4.2.1")))
2560 #+END_SRC
2561
2562 irony-company
2563 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2564   ;; (use-package company-irony
2565   ;;   :ensure t)
2566
2567   ;; (use-package flycheck-irony
2568   ;;   :ensure t)
2569
2570   ;; (use-package company-c-headers
2571   ;;   :ensure t
2572   ;;   :config
2573   ;;   (add-to-list 'company-c-headers-path-system "/usr/include/c++/4.2.1/")
2574   ;;   (add-to-list 'company-c-headers-path-system "/usr/local/include/"))
2575
2576   ;; (with-eval-after-load 'company
2577   ;;   (add-to-list 'company-backends 'company-irony)
2578   ;;   (add-to-list 'company-backends 'company-c-headers))
2579
2580   ;; (with-eval-after-load 'company
2581   ;;   (push  '(company-irony :with company-yasnippet) company-backends)
2582   ;;   (push  '(company-c-headers :with company-yasnippet) company-backends))
2583
2584   ;; (with-eval-after-load 'flycheck
2585   ;;   (add-hook 'flycheck-mode-hook #'flycheck-irony-setup))
2586 #+END_SRC
2587
2588 *** flycheck
2589 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2590   (use-package flycheck
2591     :ensure t)
2592 #+END_SRC
2593
2594 *** gtags
2595 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2596   (use-package ggtags
2597     :ensure t
2598     :config
2599     (define-key ggtags-mode-map (kbd "M-g d") 'ggtags-find-definition)
2600     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2601     (define-key ggtags-mode-map (kbd "M-g r") 'ggtags-find-reference)
2602     (define-key ggtags-mode-map (kbd "C-c g s") 'ggtags-find-other-symbol)
2603     (define-key ggtags-mode-map (kbd "C-c g h") 'ggtags-view-tag-history)
2604     (define-key ggtags-mode-map (kbd "C-c g r") 'ggtags-find-reference)
2605     (define-key ggtags-mode-map (kbd "C-c g f") 'ggtags-find-file)
2606     (define-key ggtags-mode-map (kbd "C-c g c") 'ggtags-create-tags)
2607     (define-key ggtags-mode-map (kbd "C-c g u") 'ggtags-update-tags))
2608
2609   (add-hook 'c-mode-common-hook
2610             (lambda ()
2611               (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
2612                 (ggtags-mode 1))))
2613
2614   (defun sd/ggtags-find-definition ()
2615     "Find the definition with current name completing."
2616     (interactive)
2617     (setq current-prefix-arg '(4))
2618     (call-interactively 'ggtags-find-definition))
2619
2620   (defun sd/ggtags-find-symbol ()
2621     "Find symbol"
2622     (interactive)
2623     (setq current-prefix-arg '(4))
2624     (call-interactively 'ggtags-find-other-symbol))
2625
2626   (require 'cc-mode)
2627   (require 'semantic)
2628   (setq semanticdb-default-save-directory (concat MY-EMACS-TMP "/semantic/"))
2629   (unless (file-exists-p semanticdb-default-save-directory)
2630     (make-directory semanticdb-default-save-directory))
2631
2632   (global-semanticdb-minor-mode 1)
2633   (global-semantic-idle-scheduler-mode 1)
2634
2635   (semantic-mode 1)
2636 #+END_SRC
2637
2638 *** google C style
2639 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2640   ;; (use-package google-c-style
2641   ;;   :ensure t
2642   ;;   :config
2643   ;;   (add-hook 'c-mode-hook 'google-set-c-style)
2644   ;;   (add-hook 'c++-mode-hook 'google-set-c-style))
2645 #+END_SRC
2646
2647 *** Compile and Run the C file
2648 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2649   (defun my-cpp-hook ()
2650     (let* ((current-file-name)
2651            (out-file-name))
2652       (when buffer-file-name
2653         (setq current-file-name (shell-quote-argument buffer-file-name))
2654         (setq out-file-name (shell-quote-argument (concat (file-name-sans-extension buffer-file-name) ".out"))))
2655       (setq-local compilation-read-command t)
2656       (set (make-local-variable 'compile-command)
2657            (concat "g++ -Wall -std=c++11 "
2658                    current-file-name
2659                    " -o "
2660                    out-file-name
2661                    " && "
2662                    out-file-name
2663                    ))
2664       (local-set-key (kbd "s-r") 'compile)))
2665
2666   (add-hook 'c-mode-hook 'my-cpp-hook)
2667   (add-hook 'c++-mode-hook 'my-cpp-hook)
2668 #+END_SRC
2669
2670 ** Lua
2671 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2672   (use-package lua-mode
2673     :ensure t)
2674 #+END_SRC
2675
2676 ** Scheme
2677 Install =guile=, =guile= is an implementation of =Scheme= programming language.
2678 #+BEGIN_SRC sh
2679   brew install guile
2680 #+END_SRC
2681
2682 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2683   (setq geiser-scheme-implementation 'guile)
2684 #+END_SRC
2685
2686 #+BEGIN_SRC scheme
2687   (define a "3")
2688   a
2689 #+END_SRC
2690
2691 #+RESULTS:
2692 : 3
2693
2694 ** Racket
2695 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2696   (use-package racket-mode
2697     :ensure t
2698     :config
2699     (define-key racket-mode-map (kbd "s-r") 'racket-run)
2700     (add-to-list 'racket-mode-hook (lambda () (lispy-mode 1))))
2701
2702   ;; set racket path
2703   (setenv "PATH" (concat (getenv "PATH")
2704                          ":" "/Applications/Racket v6.10.1/bin"))
2705   (setenv "MANPATH" (concat (getenv "MANPATH")
2706                             ":" "/Applications/Racket v6.10.1/man"))
2707   (setq exec-path (append exec-path '("/Applications/Racket v6.10.1/bin")))
2708
2709   (add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
2710 #+END_SRC
2711 * Compile
2712 Set the environments vairables in compilation mode
2713 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2714   (use-package compile
2715     :commands compile
2716     :config
2717     (setq compilation-environment (cons "LC_ALL=C" compilation-environment))
2718     (setq compilation-auto-jump-to-first-error t)
2719     (setq compilation-auto-jump-to-next t)
2720     (setq compilation-scroll-output 'first-error)
2721     ;; this will save all the modified buffers before compile
2722     (setq compilation-ask-about-save nil)
2723     (setq compilation-window-height (/ (window-total-height) 3)))
2724
2725   ;; super-r to compile
2726   (with-eval-after-load "compile"
2727     (define-key compilation-mode-map (kbd "C-o") nil)
2728     (define-key compilation-mode-map (kbd "n") 'compilation-next-error)
2729     (define-key compilation-mode-map (kbd "p") 'compilation-previous-error)
2730     (define-key compilation-mode-map (kbd "q") (lambda () (interactive) (quit-window t)))
2731     (define-key compilation-mode-map (kbd "r") #'recompile))
2732
2733   ;; here note dynamic binding the value of vv, otherwise it will resport error when run the hook.
2734   ;; https://emacs.stackexchange.com/questions/10394/scope-in-lambda
2735   (dolist (vv '(
2736                 (cperl-mode-hook . "perl")
2737                 (lua-mode-hook . "lua")
2738                 (python-mode-hook . "python")
2739                 (shell-mode-hook . "sh")))
2740     (add-hook (car vv) `(lambda ()
2741                           (unless (or (file-exists-p "makefile")
2742                                       (file-exists-p "Makefile"))
2743                             (set (make-local-variable 'compile-command)
2744                                  (concat (cdr ',vv)
2745                                          " "
2746                                          (if buffer-file-name
2747                                              (shell-quote-argument buffer-file-name))))))))
2748
2749   (global-set-key (kbd "s-r") 'compile)
2750 #+END_SRC
2751
2752 * Auto-Insert
2753 ** Enable auto-insert mode
2754 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2755   (auto-insert-mode t)
2756   (setq auto-insert-query nil)
2757 #+END_SRC
2758
2759 ** C++ Auto Insert
2760 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2761   (eval-after-load 'autoinsert
2762     '(define-auto-insert '("\\.cpp\\|.cc\\'" . "C++ skeleton")
2763        '(
2764          "Short description:"
2765          "/*"
2766          "\n * " (file-name-nondirectory (buffer-file-name))
2767          "\n */" > \n \n
2768          "#include <iostream>" \n
2769          "//#include \""
2770          (file-name-sans-extension
2771           (file-name-nondirectory (buffer-file-name)))
2772          ".hpp\"" \n \n
2773          "using namespace std;" \n \n
2774          "int main (int argc, char *argv[])"
2775          "\n{" \n 
2776          > _ \n
2777          "return 0;"
2778          "\n}" > \n
2779          )))
2780
2781   (eval-after-load 'autoinsert
2782     '(define-auto-insert '("\\.c\\'" . "C skeleton")
2783        '(
2784          "Short description:"
2785          "/*\n"
2786          " * " (file-name-nondirectory (buffer-file-name)) "\n"
2787          " */" > \n \n
2788          "#include <stdio.h>" \n
2789          "//#include \""
2790          (file-name-sans-extension
2791           (file-name-nondirectory (buffer-file-name)))
2792          ".h\"" \n \n
2793          "int main (int argc, char *argv[])\n"
2794          "{" \n
2795          > _ \n
2796          "return 0;\n"
2797          "}" > \n
2798          )))
2799
2800   (eval-after-load 'autoinsert
2801     '(define-auto-insert '("\\.h\\|.hpp\\'" . "c/c++ header")
2802        '((s-upcase (s-snake-case (file-name-nondirectory buffer-file-name)))
2803          "#ifndef " str n "#define " str "\n\n" _ "\n\n#endif  // " str)))
2804 #+END_SRC
2805
2806 ** Python template
2807 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2808   (eval-after-load 'autoinsert
2809     '(define-auto-insert '("\\.\\(py\\)\\'" . "Python skeleton")
2810        '(
2811          "Empty"
2812          "#import os,sys" \n
2813          \n \n
2814          )))
2815 #+END_SRC
2816
2817 ** Elisp 
2818 Emacs lisp auto-insert, based on the default module in =autoinsert.el=, but replace =completing-read= as 
2819 =completing-read-ido-ubiquitous= to fix the edge case of that =ido= cannot handle.
2820 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2821   (eval-after-load 'autoinsert
2822     '(define-auto-insert '("\\.el\\'" . "my Emacs Lisp header")
2823        '(
2824          "Short description: "
2825          ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
2826          (make-string (max 2 (- 80 (current-column) 27)) ?\s)
2827          "-*- lexical-binding: t; -*-" '(setq lexical-binding t)
2828          "\n
2829   ;; Copyright (C) " (format-time-string "%Y") "  "
2830          (getenv "ORGANIZATION") | (progn user-full-name) "
2831
2832   ;; Author: " (user-full-name)
2833          '(if (search-backward "&" (line-beginning-position) t)
2834               (replace-match (capitalize (user-login-name)) t t))
2835          '(end-of-line 1) " <" (progn user-mail-address) ">
2836   ;; Keywords: "
2837          '(require 'finder)
2838          ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
2839          '(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
2840                            finder-known-keywords)
2841                 v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x)))
2842                               finder-known-keywords
2843                               "\n"))
2844          ((let ((minibuffer-help-form v2))
2845             (completing-read-ido-ubiquitous "Keyword, C-h: " v1 nil t))
2846           str ", ") & -2 "
2847
2848   \;; This program is free software; you can redistribute it and/or modify
2849   \;; it under the terms of the GNU General Public License as published by
2850   \;; the Free Software Foundation, either version 3 of the License, or
2851   \;; (at your option) any later version.
2852
2853   \;; This program is distributed in the hope that it will be useful,
2854   \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2855   \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2856   \;; GNU General Public License for more details.
2857
2858   \;; You should have received a copy of the GNU General Public License
2859   \;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
2860
2861   \;;; Commentary:
2862
2863   \;; " _ "
2864
2865   \;;; Code:
2866
2867
2868   \(provide '"
2869          (file-name-base)
2870          ")
2871   \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")))
2872 #+END_SRC
2873
2874 ** Org file template
2875 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2876   ;; (eval-after-load 'autoinsert
2877   ;;   '(define-auto-insert '("\\.\\(org\\)\\'" . "Org-mode skeleton")
2878   ;;      '(
2879   ;;        "title: "
2880   ;;        "#+TITLE: " str (make-string 30 ?\s) > \n
2881   ;;        "#+AUTHOR: Peng Li\n"
2882   ;;        "#+EMAIL: seudut@gmail.com\n"
2883   ;;        "#+DATE: " (shell-command-to-string "echo -n $(date +%Y-%m-%d)") > \n
2884   ;;        > \n
2885   ;;        > _)))
2886 #+END_SRC
2887
2888 * Markdown mode
2889 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2890   (use-package markdown-mode
2891     :ensure t
2892     :commands (markdown-mode gfm-mode)
2893     :mode (("README\\.md\\'" . gfm-mode)
2894            ("\\.md\\'" . markdown-mode)
2895            ("\\.markdown\\'" . markdown-mode))
2896     :init (setq markdown-command "multimarkdown"))
2897
2898   ;; (add-hook 'gfm-mode-hook (lambda ()
2899   ;;                            (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2900   ;;                            (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch)))
2901   ;; (with-eval-after-load "gfm-mode"
2902   ;;   (set-face-attribute 'markdown-inline-code-face nil :inherit 'fixed-pitch)
2903   ;;   (set-face-attribute 'markdown-pre-face nil :inherit 'fixed-pitch))
2904 #+END_SRC
2905
2906 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2907   (use-package markdown-preview-eww
2908     :ensure t)
2909 #+END_SRC
2910
2911 * Iedit
2912 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2913   (use-package iedit
2914     :ensure t
2915     :init
2916     (global-set-key (kbd "C-;") #'iedit-mode))
2917 #+END_SRC
2918 * Gnus
2919 ** Gmail setting 
2920 Refer [[https://www.emacswiki.org/emacs/GnusGmail][GnusGmail]]
2921 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2922   (setq user-mail-address "seudut@gmail.com"
2923         user-full-name "Peng Li")
2924
2925   (setq gnus-select-method
2926         '(nnimap "gmail"
2927                  (nnimap-address "imap.gmail.com")
2928                  (nnimap-server-port "imaps")
2929                  (nnimap-stream ssl)))
2930
2931   (setq smtpmail-smtp-service 587
2932         gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")
2933
2934   ;; Use gmail sending mail
2935   (setq message-send-mail-function 'smtpmail-send-it
2936         smtpmail-starttls-credentials '(("smtp.gmail.com" 587 nil nil))
2937         smtpmail-auth-credentials '(("smtp.gmail.com" 587 "seudut@gmail.com" nil))
2938         smtpmail-default-smtp-server "smtp.gmail.com"
2939         smtpmail-smtp-server "smtp.gmail.com"
2940         smtpmail-smtp-service 587
2941         starttls-use-gnutls t)
2942 #+END_SRC
2943
2944 And put the following in =~/.authinfo= file, replacing =<USE>= with your email address
2945 and =<PASSWORD>= with the password
2946 #+BEGIN_EXAMPLE
2947   machine imap.gmail.com login <USER> password <PASSWORD> port imaps
2948   machine smtp.gmail.com login <USER> password <PASSWORD> port 587
2949 #+END_EXAMPLE
2950
2951 Then Run =M-x gnus=
2952
2953 ** Group buffer
2954 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2955   ;; (use-package gnus
2956   ;;   :init
2957   ;;   (setq gnus-permanently-visible-groups "\.*")
2958   ;;   :config
2959   ;;   (cond (window-system
2960   ;;          (setq custom-background-mode 'light)
2961   ;;          (defface my-group-face-1
2962   ;;            '((t (:foreground "Red" :bold t))) "First group face")
2963   ;;          (defface my-group-face-2
2964   ;;            '((t (:foreground "DarkSeaGreen4" :bold t)))
2965   ;;            "Second group face")
2966   ;;          (defface my-group-face-3
2967   ;;            '((t (:foreground "Green4" :bold t))) "Third group face")
2968   ;;          (defface my-group-face-4
2969   ;;            '((t (:foreground "SteelBlue" :bold t))) "Fourth group face")
2970   ;;          (defface my-group-face-5
2971   ;;            '((t (:foreground "Blue" :bold t))) "Fifth group face")))
2972   ;;   (setq gnus-group-highlight
2973   ;;         '(((> unread 200) . my-group-face-1)
2974   ;;           ((and (< level 3) (zerop unread)) . my-group-face-2)
2975   ;;           ((< level 3) . my-group-face-3)
2976   ;;           ((zerop unread) . my-group-face-4)
2977   ;;           (t . my-group-face-5))))
2978
2979
2980   ;; ;; key-
2981   ;; (add-hook 'gnus-group-mode-hook (lambda ()
2982   ;;                                   (define-key gnus-group-mode-map "k" 'gnus-group-prev-group)
2983   ;;                                   (define-key gnus-group-mode-map "j" 'gnus-group-next-group)
2984   ;;                                   (define-key gnus-group-mode-map "g" 'gnus-group-jump-to-group)
2985   ;;                                   (define-key gnus-group-mode-map "v" (lambda () (interactive) (gnus-group-select-group t)))))
2986 #+END_SRC
2987
2988 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
2989   (setq gnus-fetch-old-headers 't)
2990
2991
2992
2993   (setq gnus-extract-address-components
2994         'mail-extract-address-components)
2995   ;; summary buffer 
2996   (setq gnus-summary-line-format "%U%R%z%I%(%[%-20,20f%]%)  %s%-80=   %11&user-date;\n")
2997   (setq gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M")
2998                                       ((+ 86400 (gnus-seconds-today)) . "%a %H:%M")
2999                                       (604800 . "%a, %b %-d")
3000                                       (15778476 . "%b %-d")
3001                                       (t . "%Y-%m-%d")))
3002
3003   (setq gnus-thread-sort-functions '((not gnus-thread-sort-by-number)))
3004   (setq gnus-unread-mark ?\.)
3005   (setq gnus-use-correct-string-widths t)
3006
3007   ;; thread
3008   (setq gnus-thread-hide-subtree t)
3009
3010   ;; (with-eval-after-load 'gnus-summary-mode
3011   ;;   (define-key gnus-summary-mode-map (kbd "C-o") 'sd/hydra-window/body))
3012
3013   ;; (add-hook 'gnus-summary-mode-hook (lambda ()
3014   ;;                                     (define-key gnus-summary-mode-map (kbd "C-o") nil)))
3015   ;(add-hook 'gnus-summary-mode-hook (apply-partially #'define-key gnus-summary-mode-map (kbd "C-o") nil))
3016
3017
3018 #+END_SRC
3019
3020 ** Windows layout
3021 See [[https://www.emacswiki.org/emacs/GnusWindowLayout][GnusWindowLayout]]
3022 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3023   (gnus-add-configuration
3024    '(summary
3025      (horizontal 1.0
3026                  (vertical 35
3027                            (group 1.0))
3028                  (vertical 1.0
3029                            (summary 1.0 poine)))))
3030
3031   (gnus-add-configuration
3032    '(article
3033      (horizontal 1.0
3034                  (vertical 35
3035                            (group 1.0))
3036                  (vertical 1.0
3037                            (summary 0.50 point)
3038                            (article 1.0)))))
3039
3040   (with-eval-after-load 'gnus-group-mode
3041     (gnus-group-select-group "INBOX"))
3042   ;; (add-hook 'gnus-group-mode-map (lambda ()
3043   ;;                               (gnus-group-select-group "INBOX")))
3044 #+END_SRC
3045
3046 * Mu4e
3047 Refer [[http://www.kirang.in/2014/11/13/emacs-as-email-client-with-offlineimap-and-mu4e-on-osx][emacs-as-email-client-with-offlineimap-and-mu4e-on-osx]]
3048
3049 ** OfflineImap - download all mails from IMAP into local directory, and keep in sync
3050 #+BEGIN_SRC sh :results output replace
3051   # offline-imap
3052   brew install offline-imap
3053
3054   cp /usr/local/etc/offlineimap.conf ~/.offlineimapr
3055
3056   #For the =offlineimap= config on mac, using =sslcacertfile= instead of =cert_fingerpring=. On Mac
3057   sslcacertfile = /usr/local/etc/openssl/cert.pem 
3058 #+END_SRC
3059
3060 #+BEGIN_SRC conf 
3061   [general]
3062   ui=TTYUI
3063   accounts = Gmail
3064   autorefresh = 5
3065
3066   [Account Gmail]
3067   localrepository = Gmail-Local
3068   remoterepository = Gmail-Remote
3069
3070   [Repository Gmail-Local]
3071   type = Maildir
3072   localfolders = ~/.Mail/seudut@gmail.com
3073
3074   [Repository Gmail-Remote]
3075   type = Gmail
3076   remotehost = imap.gmail.com
3077   remoteuser = seudut@gmail.com
3078   remotepass = xxxxxxxx
3079   realdelete = no
3080   ssl = yes
3081   #cert_fingerprint = <insert gmail server fingerprint here>
3082   sslcacertfile = /usr/local/etc/openssl/cert.pem
3083   maxconnections = 1
3084   folderfilter = lambda folder: folder not in ['[Gmail]/Trash',
3085                                                '[Gmail]/Spam',
3086                                                '[Gmail]/All Mail',
3087                                                ]
3088 #+END_SRC
3089
3090 Then, run =offlineimap= to sync the mail
3091
3092 ** Mu - fast search, view mails and extract attachments.
3093 #+BEGIN_SRC sh
3094   EMACS=/usr/local/bin/emacs brew install mu --with-emacs
3095 #+END_SRC
3096
3097 Then, run =mu index --maildir=~/.Mail=
3098
3099 ** Mu4e - Emacs frontend of Mu
3100 config from [[http://www.kirang.in/2014/11/13/emacs-as-email-client-with-offlineimap-and-mu4e-on-osx/][emacs-as-email-client-with-offlineimap-and-mu4e-on-osx]]
3101 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3102   (if (require 'mu4e nil 'noerror)
3103       (progn
3104         (setq mu4e-maildir "~/.Mail")
3105         (setq mu4e-drafts-folder "/[Gmail].Drafts")
3106         (setq mu4e-sent-folder   "/[Gmail].Sent Mail")
3107         ;; don't save message to Sent Messages, Gmail/IMAP takes care of this
3108         (setq mu4e-sent-messages-behavior 'delete)
3109         ;; allow for updating mail using 'U' in the main view:
3110         (setq mu4e-get-mail-command "offlineimap")
3111
3112         ;; shortcuts
3113         (setq mu4e-maildir-shortcuts
3114               '( ("/INBOX"               . ?i)
3115                  ("/[Gmail].Sent Mail"   . ?s)))
3116
3117         ;; something about ourselves
3118         (setq
3119          user-mail-address "seudut@gmail.com"
3120          user-full-name  "Peng Li"
3121          mu4e-compose-signature
3122          (concat
3123           "Thanks,\n"
3124           "Peng\n"))
3125
3126         ;; show images
3127         (setq mu4e-show-images t)
3128
3129         ;; use imagemagick, if available
3130         (when (fboundp 'imagemagick-register-types)
3131           (imagemagick-register-types))
3132
3133         ;; convert html emails properly
3134         ;; Possible options:
3135         ;;   - html2text -utf8 -width 72
3136         ;;   - textutil -stdin -format html -convert txt -stdout
3137         ;;   - html2markdown | grep -v '&nbsp_place_holder;' (Requires html2text pypi)
3138         ;;   - w3m -dump -cols 80 -T text/html
3139         ;;   - view in browser (provided below)
3140         (setq mu4e-html2text-command "textutil -stdin -format html -convert txt -stdout")
3141
3142         ;; spell check
3143         (add-hook 'mu4e-compose-mode-hook
3144                   (defun my-do-compose-stuff ()
3145                     "My settings for message composition."
3146                     (set-fill-column 72)
3147                     (flyspell-mode)))
3148
3149         ;; add option to view html message in a browser
3150         ;; `aV` in view to activate
3151         (add-to-list 'mu4e-view-actions
3152                      '("ViewInBrowser" . mu4e-action-view-in-browser) t)
3153
3154         ;; fetch mail every 10 mins
3155         (setq mu4e-update-interval 600)
3156
3157         ;; mu4e view
3158         (setq-default mu4e-headers-fields '((:flags . 6)
3159                                             (:from-or-to . 22)
3160                                             (:mailing-list . 20)
3161                                             (:thread-subject . 70)
3162                                             (:human-date . 16))))
3163     (message "seudut:mu4e not installed, it won't work."))
3164 #+END_SRC
3165
3166 ** Smtp - send mail
3167 - =gnutls=, depends on =gnutls=, first confirm this is installed, otherwise, =brew install gnutls=
3168 - =~/.authinfo=
3169 #+BEGIN_SRC fundamental 
3170   machine smtp.gmail.com login <gmail username> password <gmail password>
3171 #+END_SRC
3172 - OPTIONAL, encrypt the =~/.authinfo= file
3173 #+BEGIN_SRC sh :results output replace
3174   gpg --output ~/.authinfo.gpg --symmetric ~/.authinfo
3175 #+END_SRC
3176
3177 * Ediff
3178 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3179   (with-eval-after-load 'ediff
3180     (setq ediff-split-window-function 'split-window-horizontally)
3181     (setq ediff-window-setup-function 'ediff-setup-windows-plain)
3182     (add-hook 'ediff-startup-hook 'ediff-toggle-wide-display)
3183     (add-hook 'ediff-cleanup-hook 'ediff-toggle-wide-display)
3184     (add-hook 'ediff-suspend-hook 'ediff-toggle-wide-display))
3185 #+END_SRC
3186
3187 * Modes
3188 ** Yaml-mode
3189 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3190   (use-package yaml-mode
3191     :ensure t
3192     :init
3193     (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
3194 #+END_SRC
3195
3196 * Entertainment
3197 ** GnuGo
3198 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
3199 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3200   (use-package gnugo
3201     :ensure t
3202     :defer t
3203     :init
3204     (require 'gnugo-imgen)
3205     (setq gnugo-xpms 'gnugo-imgen-create-xpms)
3206     (add-hook 'gnugo-start-game-hook '(lambda ()
3207                                         (gnugo-image-display-mode)
3208                                         (gnugo-grid-mode)))
3209     :config
3210     (add-to-list 'gnugo-option-history (format "--boardsize 19 --color black --level 1")))
3211 #+END_SRC
3212
3213 ** Emms
3214 We can use [[https://www.gnu.org/software/emms/quickstart.html][Emms]] for multimedia in Emacs
3215 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3216   (use-package emms
3217     :ensure t
3218     :init
3219     (setq emms-directory (concat sd-temp-directory "emms"))
3220     (setq emms-source-file-default-directory "~/Music/")
3221     :config
3222     (emms-standard)
3223     (emms-default-players)
3224     (define-emms-simple-player mplayer '(file url)
3225       (regexp-opt '(".ogg" ".mp3" ".mgp" ".wav" ".wmv" ".wma" ".ape"
3226                     ".mov" ".avi" ".ogm" ".asf" ".mkv" ".divx" ".mpeg"
3227                     "http://" "mms://" ".rm" ".rmvb" ".mp4" ".flac" ".vob"
3228                     ".m4a" ".flv" ".ogv" ".pls"))
3229       "mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
3230     (emms-history-load))
3231 #+END_SRC
3232
3233 * Dictionary
3234 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3235   (use-package bing-dict
3236     :ensure t
3237     :init
3238     (global-set-key (kbd "s-d") 'bing-dict-brief)
3239     :commands (bing-dict-brief))
3240 #+END_SRC
3241
3242 * Project operations - =super=
3243
3244 ** Windown & Buffer - =C-o=
3245 Defind a =hydra= function for windows, buffer & bookmark operations. And map it to =C-o= globally.
3246 Most use =C-o C-o= to switch buffers; =C-o x, v= to split window; =C-o o= to delete other windows
3247 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3248   (winner-mode 1)
3249
3250   (require 'utilities)
3251   (defhydra sd/hydra-window (:color red :columns nil)
3252     "C-o"
3253     ;; windows switch
3254     ("h" windmove-left nil :exit t)
3255     ("j" windmove-down nil :exit t)
3256     ("k" windmove-up nil :exit t)
3257     ("l" windmove-right nil :exit t)
3258     ("C-o" other-window nil :exit t)
3259     ;; window resize
3260     ("H" hydra-move-splitter-left nil)
3261     ("J" hydra-move-splitter-down nil)
3262     ("K" hydra-move-splitter-up nil)
3263     ("L" hydra-move-splitter-right nil)
3264     ;; windows split
3265     ("v" (lambda ()
3266            (interactive)
3267            (split-window-right)
3268            (windmove-right))
3269      nil :exit t)
3270     ("x" (lambda ()
3271            (interactive)
3272            (split-window-below)
3273            (windmove-down))
3274      nil :exit t)
3275     ;; buffer / windows switch
3276     ("o" sd/toggle-max-windows nil :exit t)
3277     ("C-k" sd/delete-current-window nil :exit t)
3278     ("C-d" (lambda ()
3279              (interactive)
3280              (kill-buffer)
3281              (sd/delete-current-window))
3282      nil :exit t)
3283
3284     ;; ace-window
3285     ;; ("'" other-window "other" :exit t)
3286     ;; ("a" ace-window "ace")
3287     ("s" ace-swap-window nil)
3288     ("D" ace-delete-window nil :exit t)
3289     ;; ("i" ace-maximize-window "ace-one" :exit t)
3290     ;; Windows undo - redo
3291     ("u" (progn (winner-undo) (setq this-command 'winner-undo)) nil)
3292     ("r" (progn (winner-redo) (setq this-command 'winner-redo)) nil)
3293
3294     ;; ibuffer, dired, eshell, bookmarks
3295     ;; ("C-i" other-window nil :exit t)
3296     ("C-b" ido-switch-buffer nil :exit t)
3297     ("C-f" projectile-find-file nil :exit t)
3298     ("C-r" ivy-recentf nil :exit t)
3299     ;; ("C-p" persp-switch nil :exit t)
3300     ;; ("C-t" projectile-persp-switch-project nil :exit t)
3301
3302     ;; other special buffers
3303     ("d" sd/project-or-dired-jump nil :exit t)
3304     ("b" ibuffer nil :exit t)
3305     ("t" multi-term nil :exit t)
3306     ("e" sd/toggle-project-eshell nil :exit t)
3307     ("m" bookmark-jump-other-window nil :exit t)
3308     ("M" bookmark-set nil :exit t)
3309     ("g" magit-status nil :exit t)
3310     ;; ("p" paradox-list-packages nil :exit t)
3311
3312     ;; quit
3313     ("q" nil nil)
3314     ("<ESC>" nil nil)
3315     ("C-h" windmove-left nil :exit t)
3316     ("C-j" windmove-down nil :exit t)
3317     ("C-k" windmove-up nil :exit t)
3318     ("C-l" windmove-right nil :exit t)
3319     ("C-;" nil nil :exit t)
3320     ("n" nil nil :exit t)
3321     ("[" nil nil :exit t)
3322     ("]" nil nil :exit t)
3323     ("f" nil nil))
3324
3325   (global-unset-key (kbd "C-o"))
3326   (global-set-key (kbd "C-o") 'sd/hydra-window/body)
3327
3328   (defun sd/project-or-dired-jump ()
3329     "If under project, jump to the root directory, otherwise
3330   jump to dired of current file"
3331     (interactive)
3332     (if (projectile-project-p)
3333         (projectile-dired)
3334       (dired-jump)))
3335 #+END_SRC
3336
3337 Kill the help window and buffer when quit.
3338 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3339   (with-eval-after-load "help-mode"
3340     (define-key help-mode-map (kbd "q") (lambda ()
3341                                           (interactive)
3342                                           (quit-window t))))
3343
3344   (with-eval-after-load 'man
3345     (set-face-attribute 'Man-overstrike nil :inherit 'bold :foreground "orange red")
3346     (set-face-attribute 'Man-underline nil :inherit 'underline :foreground "forest green")
3347     (define-key Man-mode-map (kbd "q") (lambda ()
3348                                          (interactive)
3349                                          (Man-kill))))
3350
3351
3352   ;; (advice-add 'man :after (lambda (man-args) (other-window 1)))
3353   (advice-add 'man :after (apply-partially 'other-window 1))
3354
3355
3356   (require 'shell-command-output-mode)
3357
3358   (defun my/shell-command-after (command &optional output-buffer error-buffer)
3359     (let* ((buffer (get-buffer "*Shell Command Output*"))
3360            (window (get-buffer-window buffer)))
3361       (if buffer (with-current-buffer buffer
3362                    (shell-command-output-mode)))
3363       (if window
3364           (select-window window))))
3365
3366   (advice-add 'shell-command :after 'my/shell-command-after)
3367 #+END_SRC
3368
3369 ** Motion
3370 - =C-M-=
3371 [[https://www.masteringemacs.org/article/effective-editing-movement][effective-editing-movement]]
3372 *** Command Arguments, numeric argumens
3373 =C-u 4= same as =C-4=, =M-4=
3374 *** Basic movement
3375 moving by line / word / 
3376 =C-f=, =C-b=, =C-p=, =C-n=, =M-f=, =M-b=
3377 =C-a=, =C-e=
3378 =M-m= (move first non-whitespace on this line) 
3379 =M-}=, =M-{=, Move forward end of paragraph
3380 =M-a=, =M-e=,  beginning / end of sentence
3381 =C-M-a=, =C-M-e=, move begining of defun
3382 =C-x ]=, =C-x [=, forward/backward one page
3383 =C-v=, =M-v=, =C-M-v=, =C-M-S-v= scroll down/up
3384 =M-<=, =M->=, beginning/end of buffer
3385 =M-r=, Repositiong point
3386
3387 *** Moving by S-expression / List
3388 *** Marks
3389 =C-<SPC>= set marks toggle the region
3390 =C-u C-<SPC>= Jump to the mark, repeated calls go further back the mark ring
3391 =C-x C-x= Exchanges the point and mark.
3392
3393 Stolen [[https://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode][fixing-mark-commands-transient-mark-mode]]
3394 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3395   (defun push-mark-no-activate ()
3396     "Pushes `point' to `mark-ring' and does not activate the region
3397      Equivalent to \\[set-mark-command] when \\[transient-mark-mode] is disabled"
3398     (interactive)
3399     (push-mark (point) t nil)
3400     (message "Pushed mark to ring"))
3401
3402   ;; (global-set-key (kbd "C-`") 'push-mark-no-activate)
3403
3404   (defun jump-to-mark ()
3405     "Jumps to the local mark, respecting the `mark-ring' order.
3406     This is the same as using \\[set-mark-command] with the prefix argument."
3407     (interactive)
3408     (set-mark-command 1))
3409
3410   ;; (global-set-key (kbd "M-`") 'jump-to-mark)
3411
3412   (defun exchange-point-and-mark-no-activate ()
3413     "Identical to \\[exchange-point-and-mark] but will not activate the region."
3414     (interactive)
3415     (exchange-point-and-mark)
3416     (deactivate-mark nil))
3417
3418   ;; (define-key global-map [remap exchange-point-and-mark] 'exchange-point-and-mark-no-activate)
3419 #+END_SRC
3420
3421 Show the mark ring using =helm-mark-ring=, also mapping =M-`= to quit minibuffer. so that =M-`= can 
3422 toggle the mark ring. the best way is add a new action and mapping to =helm-source-mark-ring=,  but 
3423 since there is no map such as =helm-mark-ring=map=, so I cannot binding a key to the quit action.
3424 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3425   (setq mark-ring-max 50)
3426
3427   (use-package helm
3428     :ensure t
3429     :init
3430     (global-set-key (kbd "M-`") #'helm-mark-ring))
3431
3432   (define-key minibuffer-local-map (kbd "M-`") 'keyboard-escape-quit)
3433 #+END_SRC
3434
3435 =M-h= marks the next paragraph
3436 =C-x h= marks the whole buffer
3437 =C-M-h= marks the next defun
3438 =C-x C-p= marks the next page
3439 *** Registers
3440 Registers can save text, position, rectangles, file and configuration and other things.
3441 Here for movement, we can use register to save/jump position
3442 =C-x r SPC= store point in register
3443 =C-x r j= jump to register
3444 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3445   (use-package list-register
3446     :ensure t)
3447 #+END_SRC
3448
3449 *** Bookmarks
3450 As I would like use bookmakr for different buffer/files. to help to swith
3451 different buffer/file quickly. this setting is in Windows/buffer node
3452 =C-x r m= set a bookmarks
3453 =C-x r l= list bookmarks
3454 =C-x r b= jump to bookmarks
3455
3456 *** Search
3457 Search, replace and hightlight will in later paragraph
3458 *** =Avy= for easy motion
3459 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3460   (use-package avy
3461     :ensure t
3462     :config
3463     (avy-setup-default))
3464
3465   ;; (global-set-key (kbd "C-M-j") 'avy-goto-line-below)
3466   ;; (global-set-key (kbd "C-M-n") 'avy-goto-line-below)
3467   ;; (global-set-key (kbd "C-M-k") 'avy-goto-line-above)
3468   ;; (global-set-key (kbd "C-M-p") 'avy-goto-line-above)
3469
3470   ;; (global-set-key (kbd "C-M-f") 'avy-goto-word-1-below)
3471   ;; (global-set-key (kbd "C-M-b") 'avy-goto-word-1-above)
3472
3473   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3474   ;; (global-set-key (kbd "C-M-w") 'avy-goto-char-timer)
3475   ;; (global-set-key (kbd "C-M-l") 'avy-goto-char-in-line)
3476
3477   ;; ;; will delete above 
3478   ;; (global-set-key (kbd "M-g j") 'avy-goto-line-below)
3479   ;; (global-set-key (kbd "M-g k") 'avy-goto-line-above)
3480   ;; (global-set-key (kbd "M-g w") 'avy-goto-word-1-below)
3481   ;; (global-set-key (kbd "M-g b") 'avy-goto-word-1-above)
3482   ;; (global-set-key (kbd "M-g e") 'avy-goto-word-0)
3483   ;; (global-set-key (kbd "M-g f") 'avy-goto-char-timer)
3484   ;; (global-set-key (kbd "M-g c") 'avy-goto-char-in-line)
3485   (global-set-key (kbd "M-g c") 'avy-goto-char)
3486   (global-set-key (kbd "M-g b") 'avy-goto-word-0-above)
3487   (global-set-key (kbd "M-g w") 'avy-goto-word-0-below)
3488 #+END_SRC
3489
3490 *** =Imenu= goto tag
3491 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3492   (global-set-key (kbd "M-i") #'counsel-imenu)
3493   ;; (global-set-key (kbd "M-i") #'imenu)
3494
3495   ;; define M-[ as C-M-a
3496   ;; http://ergoemacs.org/emacs/emacs_key-translation-map.html
3497   (define-key key-translation-map (kbd "M-[") (kbd "C-M-a"))
3498   (define-key key-translation-map (kbd "M-]") (kbd "C-M-e"))
3499 #+END_SRC
3500
3501 *** Go-to line
3502 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3503   (global-set-key (kbd "M-l") 'goto-line)
3504 #+END_SRC
3505
3506 ** Edit
3507 *** basic editting
3508 - cut, yank, =C-w=, =C-y=
3509 - save, revert
3510 - undo, redo - undo-tree
3511 - select, expand-region
3512 - spell check, flyspell
3513
3514 *** Kill ring
3515 =helm-show-kill-ring=
3516 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3517   (setq kill-ring-max 100)                ; default is 60p
3518
3519   (use-package helm
3520     :ensure t
3521     :init
3522     (global-set-key (kbd "M-y") #'helm-show-kill-ring))
3523 #+END_SRC
3524
3525 *** undo-tree
3526 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3527   (use-package undo-tree
3528     :ensure t
3529     :config
3530     (define-key undo-tree-visualizer-mode-map "j" 'undo-tree-visualize-redo)
3531     (define-key undo-tree-visualizer-mode-map "k" 'undo-tree-visualize-undo)
3532     (define-key undo-tree-visualizer-mode-map "h" 'undo-tree-visualize-switch-branch-left)
3533     (define-key undo-tree-visualizer-mode-map "l" 'undo-tree-visualize-switch-branch-right)
3534     (global-undo-tree-mode 1))
3535
3536   (global-set-key (kbd "s-u") 'undo-tree-visualize)
3537 #+END_SRC
3538
3539 *** flyspell
3540 Stolen from [[https://github.com/redguardtoo/emacs.d/blob/master/lisp/init-spelling.el][here]], hunspell will search dictionary in =DICPATH=
3541 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3542   (setenv "DICPATH" "/usr/local/share/hunspell")
3543
3544   (when (executable-find "hunspell")
3545     (setq-default ispell-program-name "hunspell")
3546     (setq ispell-really-hunspell t))
3547
3548   ;; (defun text-mode-hook-setup ()
3549   ;;   ;; Turn off RUN-TOGETHER option when spell check text-mode
3550   ;;   (setq-local ispell-extra-args (flyspell-detect-ispell-args)))
3551   ;; (add-hook 'text-mode-hook 'text-mode-hook-setup)
3552   ;; (add-hook 'text-mode-hook 'flyspell-mode)
3553
3554   ;; enable flyspell check on comments and strings in progmamming modes
3555   ;; (add-hook 'prog-mode-hook 'flyspell-prog-mode)
3556
3557   ;; I don't use the default mappings
3558   (with-eval-after-load 'flyspell
3559     (define-key flyspell-mode-map (kbd "C-;") nil)
3560     (define-key flyspell-mode-map (kbd "C-,") nil)
3561     (define-key flyspell-mode-map (kbd "C-.") nil))
3562 #+END_SRC
3563
3564 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]]
3565 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3566   ;; NO spell check for embedded snippets
3567   (defadvice org-mode-flyspell-verify (after org-mode-flyspell-verify-hack activate)
3568     (let ((rlt ad-return-value)
3569           (begin-regexp "^[ \t]*#\\+begin_\\(src\\|html\\|latex\\)")
3570           (end-regexp "^[ \t]*#\\+end_\\(src\\|html\\|latex\\)")
3571           old-flag
3572           b e)
3573       (when ad-return-value
3574         (save-excursion
3575           (setq old-flag case-fold-search)
3576           (setq case-fold-search t)
3577           (setq b (re-search-backward begin-regexp nil t))
3578           (if b (setq e (re-search-forward end-regexp nil t)))
3579           (setq case-fold-search old-flag))
3580         (if (and b e (< (point) e)) (setq rlt nil)))
3581       (setq ad-return-value rlt)))
3582 #+END_SRC
3583
3584 ** Search & Replace / hightlight =M-s=
3585 *** isearch
3586 =C-s=, =C-r=, 
3587 =C-w= add word at point to search string, 
3588 =M-%= query replace
3589 =C-M-y= add character at point to search string
3590 =M-s C-e= add reset of line at point
3591 =C-y= yank from clipboard to search string
3592 =M-n=, =M-p=, history
3593 =C-M-i= complete search string
3594 set the isearch history size, the default is only =16=
3595 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3596   (setq history-length 5000)
3597   (setq regexp-search-ring-max 1000)
3598   (setq search-ring-max 1000)
3599
3600   ;; when search a word or a symbol , also add the word into regexp-search-ring
3601   (defadvice isearch-update-ring (after sd/isearch-update-ring (string &optional regexp) activate)
3602     "Add search-ring to regexp-search-ring"
3603     (unless regexp
3604       (add-to-history 'regexp-search-ring string regexp-search-ring-max)))
3605 #+END_SRC
3606
3607 *** =M-s= prefix
3608 use the prefix =M-s= for searching in buffers
3609 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3610   (defun sd/make-keymap (key bindings)
3611     (setq keymap (make-sparse-keymap))
3612     (dolist (binding bindings)
3613       (define-key keymap (car binding) (cdr binding)))
3614     (global-set-key key keymap))
3615
3616   ;; (sd/make-keymap "\M-s"
3617   ;;                 '(("w" . save-buffer)
3618   ;;                   ;; ("\M-w" . save-buffer)
3619   ;;                   ("e" . revert-buffer)
3620   ;;                   ("s" . isearch-forward-regexp)
3621   ;;                   ("\M-s" . isearch-forward-regexp)
3622   ;;                   ("r" . isearch-backward-regexp)
3623   ;;                   ("." . isearch-forward-symbol-at-point)
3624   ;;                   ("o" . occur)
3625   ;;                   ;; ("h" . highlight-symbol-at-point)
3626   ;;                   ("h" . highlight-symbol)
3627   ;;                   ("m" . highlight-regexp)
3628   ;;                   ("l" . highlight-lines-matching-regexp)
3629   ;;                   ("M" . unhighlight-regexp)
3630   ;;                   ("f" . keyboard-quit)
3631   ;;                   ("q" . keyboard-quit)))
3632 #+END_SRC
3633
3634 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3635   (use-package highlight-symbol
3636     :ensure t)
3637
3638   (defhydra sd/search-replace (:color red :columns nil)
3639     "Search"
3640     ("w" save-buffer "save" :exit t)
3641     ("e" revert-buffer "revert" :exit t)
3642     ("u" undo-tree-visualize "undo" :exit t)
3643     ("s" isearch-forward-regexp "s-search" :exit t)
3644     ("M-s" isearch-forward-regexp "s-search" :exit t)
3645     ("r" isearch-backward-regexp "r-search" :exit t)
3646     ("." isearch-forward-symbol-at-point "search point" :exit t)
3647     ("/" swiper "swiper" :exit t)
3648     ("o" occur "occur" :exit t)
3649     ("h" highlight-symbol "higlight" :exit t)
3650     ("l" highlight-lines-matching-regexp "higlight line" :exit t)
3651     ("m" highlight-regexp "higlight" :exit t)
3652     ("M" unhighlight-regexp "unhiglight" :exit t)
3653     ("q" nil "quit")
3654     ("f" nil))
3655
3656   (global-unset-key (kbd "M-s"))
3657   (global-set-key (kbd "M-s") 'sd/search-replace/body)
3658
3659
3660   ;; search and replace and highlight
3661   (define-key isearch-mode-map (kbd "M-s") 'isearch-repeat-forward)
3662   (define-key isearch-mode-map (kbd "M-r") 'isearch-repeat-backward)
3663   (global-set-key (kbd "s-[") 'highlight-symbol-next)
3664   (global-set-key (kbd "s-]") 'highlight-symbol-prev)
3665   (global-set-key (kbd "s-\\") 'highlight-symbol-query-replace)
3666 #+END_SRC
3667
3668 *** Occur
3669 Occur search key bindings
3670 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3671   (defun sd/occur-keys ()
3672     "My key bindings in occur-mode"
3673     (interactive)
3674     (switch-to-buffer-other-window "*Occur*")
3675     (define-key occur-mode-map (kbd "C-o") nil)
3676     (define-key occur-mode-map (kbd "C-n") (lambda ()
3677                                              (interactive)
3678                                              (occur-next)
3679                                              (occur-mode-goto-occurrence-other-window)
3680                                              (recenter)
3681                                              (other-window 1)))
3682     (define-key occur-mode-map (kbd "C-p") (lambda ()
3683                                              (interactive)
3684                                              (occur-prev)
3685                                              (occur-mode-goto-occurrence-other-window)
3686                                              (recenter)
3687                                              (other-window 1))))
3688
3689   (add-hook 'occur-hook #'sd/occur-keys)
3690
3691   (use-package color-moccur
3692     :ensure t
3693     :commands (isearch-moccur isearch-all)
3694     :init
3695     (setq isearch-lazy-highlight t)
3696     :config
3697     (use-package moccur-edit))
3698 #+END_SRC
3699
3700
3701 ** Expand region map
3702 *** Install =expand-region=
3703 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3704   (use-package expand-region
3705     :ensure t
3706     :config
3707     ;; (global-set-key (kbd "C-=") 'er/expand-region)
3708     )
3709 #+END_SRC
3710
3711 *** Add a =hydra= map for =expand-region= operations
3712 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3713   (defun sd/mark-line ()
3714     "Mark current line without whitespace beginning"
3715     (interactive)
3716     (back-to-indentation)
3717     (set-mark (line-end-position)))
3718
3719   (defhydra sd/expand-selected (:color red :columns nil
3720                                        :post (deactivate-mark)
3721                                        )
3722     "Selected"
3723     ;; select
3724     ;; ("e"  er/expand-region "+")
3725     ("SPC" er/expand-region "+")
3726     ;; ("c"  er/contract-region "-")
3727     ("S-SPC" er/contract-region "-")
3728     ("r" (lambda ()
3729            (interactive)
3730            (er/contract-region 0))
3731      "reset")
3732
3733     ("i'" er/mark-inside-quotes "in")
3734     ("i\"" er/mark-inside-quotes nil)
3735     ("o'" er/mark-outside-quotes "out")
3736     ("o\"" er/mark-outside-quotes nil)
3737
3738     ("i{" er/mark-inside-pairs nil)
3739     ("i(" er/mark-inside-pairs nil)
3740     ("o{" er/mark-inside-pairs nil)
3741     ("o(" er/mark-inside-pairs nil)
3742
3743     ("p" er/mark-paragraph "paragraph")
3744
3745     ("l" sd/mark-line "line")
3746     ("u" er/mark-url "url")
3747     ("f" er/mark-defun "fun")
3748     ("n" er/mark-next-accessor "next")
3749
3750     ("x" exchange-point-and-mark "exchange")
3751
3752     ;; Search
3753     ;; higlight
3754
3755     ;; exit
3756     ("d" kill-region "delete" :exit t)
3757
3758     ("y" kill-ring-save "yank" :exit t)
3759     ("M-SPC" nil "quit" :exit t)
3760     ;; ("C-SPC" "quit" :exit t)
3761     ("q" deactivate-mark "quit" :exit t))
3762
3763   (global-set-key (kbd "M-SPC") (lambda ()
3764                                   (interactive)
3765                                   (set-mark-command nil)
3766                                   ;; (er/expand-region 1)
3767                                   (er/mark-word)
3768                                   (sd/expand-selected/body)))
3769 #+END_SRC
3770
3771 *** TODO make expand-region hydra work with lispy selected
3772
3773 * Key Bindings
3774 Here are some global key bindings for basic editting
3775 ** Global key bingding
3776 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3777   (global-set-key (kbd "C-h") 'delete-backward-char)
3778   (global-set-key (kbd "s-m") 'man)
3779   (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
3780   ;; project operation
3781   (global-set-key (kbd "s-p") 'projectile-switch-open-project)
3782   (global-set-key (kbd "s-f") 'projectile-find-file)
3783   (global-set-key (kbd "s-=") 'text-scale-increase)
3784   (global-set-key (kbd "s--") 'text-scale-decrease)
3785 #+END_SRC
3786
3787 Refer [[https://github.com/fnwiya/dotfiles/blob/c9ca79f1b22c919d9f4c3a0f944ba8281255a594/setup/.emacs.d/loader-init/_90-kill-region-or-backward-kill-word.el][kill-region-or-backward-kill-word]]
3788
3789 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3790   (require 'utilities)
3791   (global-set-key (kbd "C-w") 'sd/kill-region-or-backward-kill-word)
3792 #+END_SRC
3793
3794
3795 ** Esc in minibuffer
3796 Use =ESC= to exit minibuffer. Also I map =Super-h= the same as =C-g=
3797 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3798   (define-key minibuffer-local-map [escape] 'keyboard-escape-quit)
3799   (define-key minibuffer-local-map [escape]  'keyboard-escape-quit)
3800   (define-key minibuffer-local-ns-map [escape]  'keyboard-escape-quit)
3801   (define-key minibuffer-local-isearch-map [escape]  'keyboard-escape-quit)
3802   (define-key minibuffer-local-completion-map [escape]  'keyboard-escape-quit)
3803   (define-key minibuffer-local-must-match-map [escape]  'keyboard-escape-quit)
3804   (define-key minibuffer-local-must-match-filename-map [escape]  'keyboard-escape-quit)
3805   (define-key minibuffer-local-filename-completion-map [escape]  'keyboard-escape-quit)
3806   (define-key minibuffer-local-filename-must-match-map [escape]  'keyboard-escape-quit)
3807
3808   ;; Also map s-h same as C-g
3809   (define-key minibuffer-local-map (kbd "s-h") 'keyboard-escape-quit)
3810 #+END_SRC
3811
3812 * Developing
3813 ** perspeen
3814 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3815   ;; (use-package perspeen
3816   ;;   :ensure t
3817   ;;   :init
3818   ;;   (setq perspeen-use-tab nil)
3819   ;;   :config
3820   ;;   (perspeen-mode))
3821
3822   (el-get-bundle seudut/perspeen
3823     :features perspeen
3824     (setq perspeen-use-tab nil)
3825     ;; (perspeen-mode)
3826     )
3827
3828   ;; super-i to switch to ith workspace
3829
3830   (defmacro sd/define-keys (map key func &rest args)
3831     "A macro to define multi keys "
3832     `(define-key ,map ,key (lambda () (interactive) (,func ,@args))))
3833
3834
3835   (with-eval-after-load "perspeen"
3836     (dotimes (ii 9)
3837       (sd/define-keys perspeen-mode-map (kbd (concat "s-" (number-to-string (+ ii 1))))
3838                       perspeen-goto-ws (+ ii 1)))
3839     (define-key perspeen-mode-map (kbd "s-c") 'perspeen-create-ws)
3840     (define-key perspeen-mode-map (kbd "s-n") 'perspeen-next-ws)
3841     (define-key perspeen-mode-map (kbd "s-p") 'perspeen-previous-ws)
3842     (define-key perspeen-mode-map (kbd "s-'") 'perspeen-last-ws)
3843     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab)
3844     (define-key perspeen-mode-map (kbd "s-t") 'perspeen-tab-create-tab))
3845 #+END_SRC
3846 * Evil Mode
3847 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3848   (org-babel-load-file "~/.emacs.d/emacs-evil.org")
3849 #+END_SRC
3850 * Note
3851 ** Check if emacs is in terminal of graphic mode
3852 Use =display-graphic-p= instead of =window-system=
3853 [[info:elisp#Window%20Systems][Window Systems]]
3854 ** =Interactive= 
3855 ** List operation
3856 *** add a element to list
3857 - ~add-to-list~ functions, append
3858 - ~push~ macro
3859 - ~(setcdr (last aa) (list element))~
3860 blog with modify list
3861
3862 draw one line top of the windows
3863 * test
3864 This is a test.
3865 #+BEGIN_SRC emacs-lisp :tangle yes :results silent
3866   ;; test local mode line
3867   ;; (add-to-list 'load-path "~/.emacs.d/elisp")
3868   ;; (require 'my-mode-line)
3869 #+END_SRC