emacs - fix eshell alias
[dotfiles.git] / emacs.d / config.org
index 97ca5d2..ce7d3bb 100644 (file)
@@ -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