Skip to content

Commit

Permalink
add Org Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ravachol-yang committed Feb 24, 2024
1 parent 371ad91 commit d54c0c4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ to use the latest stable Emacs release like I do.
- Version Control
- Magit
- Language Support
- Racket (Racket Mode)
- Racket (Racket Mode)
- Org (Org Mode)
- Enhance
- Counsel (ivy, counsel, swiper)
- Delight
Expand Down
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

;; language support
(require 'init-racket)
(require 'init-org)

;; enhance
(require 'init-counsel)
Expand Down
9 changes: 9 additions & 0 deletions lisp/init-org.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
;;; init-org.el --- Org Mode -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:

(use-package org
:ensure t)

(provide 'init-org)
;;; init-org.el ends here

0 comments on commit d54c0c4

Please sign in to comment.