Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
takeokunn committed Dec 21, 2024
1 parent 4a769d4 commit d9c004d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions home-manager/programs/emacs/elisp/init.org
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,12 @@

(add-to-list 'auto-mode-alist '("\\.po$" . po-mode))
#+END_SRC
** prolog
#+begin_src emacs-lisp :tangle yes
(autoload-if-found '(prolog-mode) "prolog-mode" nil t)

(add-to-list 'auto-mode-alist '("\\.pl$" . prolog-mode))
#+end_src
** protobuf-mode
#+begin_src emacs-lisp :tangle yes
(autoload-if-found '(protobuf-mode) "protobuf-mode" nil t)
Expand Down Expand Up @@ -4594,6 +4600,13 @@ https://github.com/ch11ng/exwm/wiki#gpg-pinentry
(with-eval-after-load 'org-src
(add-to-list 'org-src-lang-modes '("racket" . racket)))
#+end_src
*** ob-prolog
#+begin_src emacs-lisp :tangle yes
(autoload-if-found '(org-babel-execute:prolog) "ob-prolog" nil t)

(with-eval-after-load 'org-src
(add-to-list 'org-src-lang-modes '("prolog" . pl)))
#+end_src
*** org-nix-shell
#+begin_src emacs-lisp :tangle yes
(autoload-if-found '(org-nix-shell-mode) "org-nix-shell" nil t)
Expand Down
1 change: 1 addition & 0 deletions home-manager/programs/emacs/epkgs/packages/org/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ with epkgs;
packages.ob-treesitter
packages.ob-racket
ob-base64
ob-prolog
org-nix-shell

# Org Publish
Expand Down

0 comments on commit d9c004d

Please sign in to comment.