X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=emacs.d%2Fconfig.org;h=ce7d3bb8bec652078e203dbc3dd5dfe1dcb1f20c;hb=2a7e1a0e0b1b7a67b32170de542f7df40d7a7bb4;hp=97ca5d289daf645d4884efcab60988d6cff63f6e;hpb=2648396d07620aca805367b06cfa3be8d8f9bc4f;p=dotfiles.git diff --git a/emacs.d/config.org b/emacs.d/config.org index 97ca5d2..ce7d3bb 100644 --- a/emacs.d/config.org +++ b/emacs.d/config.org @@ -1188,9 +1188,9 @@ and Defined keys, using vi keybindings, Refer abo-abo's setting [[https://github * Eshell *** Eshell alias #+BEGIN_SRC emacs-lisp :tangle yes :results silent - (defalias 'e 'ido-find-file) - (defalias 'ff 'ido-find-file) - (defalias 'ee 'ido-find-file-other-window) + (defalias 'e 'find-file) + (defalias 'ff 'find-file) + (defalias 'ee 'find-files) #+END_SRC *** Eshell erase buffer @@ -1247,6 +1247,7 @@ Toggle an eshell in split window below, refer [[http://www.howardism.org/Technic (global-set-key (kbd "M-`") 'sd/toggle-eshell-here) #+END_SRC +*** TODO smart display * Misc Settings ** [[https://github.com/abo-abo/hydra][Hydra]] @@ -1612,6 +1613,25 @@ Play Go in Emacs, gnugo xpm refert [[https://github.com/okanotor/dotemacs/blob/f #+END_SRC +** dired +=C-o= is defined as a global key for window operation, here unset it in dired mode +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (add-hook 'dired-mode-hook (lambda () + (local-unset-key (kbd "C-o")) + (local-set-key (kbd "o") 'dired-display-file))) +#+END_SRC + +** Info plus +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (el-get-bundle info+ + :url "https://raw.githubusercontent.com/emacsmirror/emacswiki.org/master/info+.el" + (require 'info+)) +#+END_SRC + +** TODO bookmark + +** TODO Calendar + * Programming ** Languages @@ -1825,7 +1845,19 @@ company mode #+END_SRC -* Todo +* Markdown mode +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (use-package markdown-mode + :ensure t + :commands (markdown-mode gfm-mode) + :mode (("README\\.md\\'" . gfm-mode) + ("\\.md\\'" . markdown-mode) + ("\\.markdown\\'" . markdown-mode)) + :init (setq markdown-command "multimarkdown")) +#+END_SRC -- change M-o to trigger to delete other windows and restore previous config +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (use-package markdown-preview-eww + :ensure t) +#+END_SRC