X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=emacs.d%2Fconfig.org;h=f711714208737aa9dbab990caf6b59df7b29bf4c;hb=965f5b3e702f12ec3a1b06c59d3a65cc58b474b6;hp=949f4e9786139d88ba1774ada5351b9c7facffe7;hpb=9387bdc8e5c4f18b9d47b2f12ccfcb386c1a5f21;p=dotfiles.git diff --git a/emacs.d/config.org b/emacs.d/config.org index 949f4e9..f711714 100644 --- a/emacs.d/config.org +++ b/emacs.d/config.org @@ -581,8 +581,6 @@ Fix the font alignment issue when both Chinese and English hybird in org-mode ta (set-face-attribute 'default nil :font "Source Code Pro:weight=light" :height 130) ;; (set-fontset-font t 'han (font-spec :family "STkaiti")) ;; (set-fontset-font t 'cjk-misc (font-spec :family "STkaiti")) - ;; (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height 120) - ;; (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height 120) (dolist (charset '(han cjk-misc)) (set-fontset-font (frame-parameter nil 'font) charset ;; (font-spec :family "HanziPen SC") @@ -850,12 +848,6 @@ Always indents header, and hide header leading starts so that no need type =#+ST (set-face-attribute 'org-block-end-line nil :background nil :foreground nil :inherit 'shadow :slant 'italic) ;; (set-face-attribute 'org-table nil :family "Ubuntu Mono" :height (face-attribute 'default :height)) ) - - ;; (x-list-fonts "Ubuntu Mono") - - ;; (set-frame-font "Ubuntu Mono") - ;; (x-list-fonts "WenQuanYi Zen Hei") - ;; (set-frame-font "WenQuanYi Zen Hei Mono") #+END_SRC *** variable-pitch-mode and fixed-pitch-mode [[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]] @@ -1417,7 +1409,7 @@ and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github ** Eshell alias #+BEGIN_SRC emacs-lisp :tangle yes :results silent (defalias 'e 'find-file) - (defalias 'ff 'find-file) + (defalias 'ff 'find-file-other-window) (defalias 'ee 'find-files) #+END_SRC @@ -1431,20 +1423,12 @@ set default eshell history folder #+BEGIN_SRC emacs-lisp :tangle yes :results silent (require 'utilities) - ;; (add-hook 'eshell-mode-hook (lambda () - ;; (local-set-key (kbd "C-l") 'sd/eshell-clear-buffer))) - ;; (add-hook 'eshell-mode-map (lambda () (interactive) - ;; (define-key eshell-mode-map (kbd "") 'completion-at-point))) - (defun sd/eshell-hook () (interactive) (define-key eshell-mode-map (kbd "C-j") #'eshell-send-input) (define-key eshell-mode-map (kbd "C-l") #'sd/eshell-clear-buffer)) (add-hook 'eshell-mode-hook #'sd/eshell-hook) - - - ;; (add-hook 'eshell-mode-hook (apply-partially #'local-set-key (kbd "C-l") 'sd/eshell-clear-buffer)) #+END_SRC ** Toggle Eshell