diff --git a/config/emacs.nix b/config/emacs.nix index fa9d77a..2f4534e 100644 --- a/config/emacs.nix +++ b/config/emacs.nix @@ -229,6 +229,10 @@ let file = ./emacs/lang/nix.el; pkgs = epkgs: [ epkgs.nix-mode ]; } + { + file = ./emacs/lang/org-mode-config.el; + pkgs = epkgs: []; + } { file = ./emacs/lang/ruby.el; pkgs = epkgs: [ diff --git a/config/emacs/lang/org-mode-config.el b/config/emacs/lang/org-mode-config.el new file mode 100644 index 0000000..c459ec2 --- /dev/null +++ b/config/emacs/lang/org-mode-config.el @@ -0,0 +1,13 @@ +;;; ruby --- mine some gems + +;;; Commentary: + +;;; Code: + +(use-package org + :config + (org-babel-do-load-languages + 'org-babel-load-languages + '((shell . t)))) + +;;; org.el ends here