aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-11-04 13:34:31 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-11-04 13:34:31 +0000
commitf247a368f7b629b3346243fd66d772bfc60b4209 (patch)
tree823747f4738c1326fd44085ce792661d1c7bd805
parentc7f264ce209752223b22041a0fdff30bb0b4489f (diff)
downloaddotfiles-f247a368f7b629b3346243fd66d772bfc60b4209.tar.gz
dotfiles-f247a368f7b629b3346243fd66d772bfc60b4209.zip
Evaluating more code blocks
-rw-r--r--emacs/loader.org19
1 files changed, 17 insertions, 2 deletions
diff --git a/emacs/loader.org b/emacs/loader.org
index ef0d0df..3ebee5e 100644
--- a/emacs/loader.org
+++ b/emacs/loader.org
@@ -27,7 +27,7 @@ Set path so that it picks up some executables that I use
#+END_SRC
#+RESULTS:
-: /home/yannherklotz/.local/bin:/home/yannherklotz/.yarn/bin:/home/yannherklotz/.local/bin:/home/yannherklotz/.yarn/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/opt/clojurescript/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
+: /home/yannherklotz/.local/bin:/home/yannherklotz/.yarn/bin:/home/yannherklotz/.yarn/bin:/usr/bin:/home/yannherklotz/.local/bin:/home/yannherklotz/.gem/ruby/2.5.0/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/opt/clojurescript/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/opt/clojurescript/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
** Repositories
Defining all the package repositories that are going to be used.
@@ -50,6 +50,9 @@ Defining all the package repositories that are going to be used.
(defvar org-elpa '("org" . "https://orgmode.org/elpa/"))
#+END_SRC
+#+RESULTS:
+: org-elpa
+
These packages are then added to the list of package archives.
#+BEGIN_SRC emacs-lisp
@@ -60,6 +63,9 @@ These packages are then added to the list of package archives.
(add-to-list 'package-archives org-elpa t)
#+END_SRC
+#+RESULTS:
+: ((melpa-stable . https://stable.melpa.org/packages/) (melpa . https://melpa.org/packages/) (gnu . https://elpa.gnu.org/packages/) (org . https://orgmode.org/elpa/))
+
Initialise the packages and if the directories don't exist, create them.
#+BEGIN_SRC emacs-lisp
@@ -67,6 +73,8 @@ Initialise the packages and if the directories don't exist, create them.
(package-initialize)
#+END_SRC
+#+RESULTS:
+
Use ~use-package~ to manage other packages, and improve load times.
#+BEGIN_SRC emacs-lisp
@@ -75,6 +83,9 @@ Use ~use-package~ to manage other packages, and improve load times.
(setq use-package-always-ensure t)
#+END_SRC
+#+RESULTS:
+: t
+
** GC Threshold
Threshold for faster startup.
@@ -750,9 +761,13 @@ Set up ob for executing code blocks
(matlab . t)
(ditaa . t)
(clojure . t)
- (dot . t))))
+ (dot . t)
+ (shell . t))))
#+END_SRC
+#+RESULTS:
+: t
+
Exporting to html needs htmlize.
#+BEGIN_SRC emacs-lisp