Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions emacs/elisp/emacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Return non-nil when the load succeeds."
ein ;; cf. https://github.com/millejoh/emacs-ipython-notebook
importmagic ;; For use with elpy.
flycheck ;; Notably, instead of flymake.
markdown-mode ;; Requires an external Markdown renderer such as pandoc (not installed here).
magit ;; git support.
math-preview ;; For use with ein. https://gitlab.com/matsievskiysv/math-preview
python-isort ;; For use with elpy.
Expand Down
1 change: 1 addition & 0 deletions emacs/elisp/mode-hooks.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
;; I usually want my .h files in C++ mode.
(add-to-list 'auto-mode-alist '("\\.h\\'" . c++-mode))
(add-to-list 'auto-mode-alist '("\\.html\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
(add-to-list 'auto-mode-alist '("mutt-[a-z0-9]+-[0-9]+-[0-9]+-[0-9]+" . post-mode))
;; YAML mode
;; https://raw.githubusercontent.com/yoshiki/yaml-mode/master/yaml-mode.el
Expand Down