diff options
-rw-r--r-- | shoshimacs.org | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/shoshimacs.org b/shoshimacs.org index 1e92738..1726525 100644 --- a/shoshimacs.org +++ b/shoshimacs.org @@ -747,6 +747,8 @@ _SLIME CONTRIBS_ "Additional SLIME packages to load on start.") (require 'slime-autoloads) + (require 'slime-asdf) + (require 'slime-quicklisp) #+end_src *** Javascript @@ -787,6 +789,12 @@ I prefer pry when its available, and it generally is on my system: (setq inf-ruby-default-implementation "pry")) #+end_src +**** ruby-end + +#+begin_src + (package-install 'ruby-end) +#+end_src + **** TODO minitest-emacs this is a package i happen to maintain, and i would like to get it into non-gnu @@ -1090,6 +1098,22 @@ not there. then i can ~mapc~ #'package-install over the list of themes. (mapc #'package-install my-themes-to-install) #+end_src +*** kaolin themes + +#+name: install-emacs-kaolin +#+begin_src emacs-lisp + (defvar emacs-kaolin-repo "https://github.com/ogdenwebb/emacs-kaolin-themes") + (defvar emacs-kaolin-src-dir (expand-file-name "~/src/emacs-kaolin/")) + + (unless (file-directory-p emacs-kaolin-src-dir) + (shell-command + (format "git clone %s %s" emacs-kaolin-repo emacs-kaolin-src-dir))) + + (add-to-list 'load-path emacs-kaolin-src-dir) + + (require 'kaolin-themes) +#+end_src + *** chosen theme list and random loading on init i generally haven't used built-in themes much, but there's a few i like, @@ -1157,4 +1181,8 @@ Saves to a temp file and puts the filename in the kill ring." (package-install 'windresize) #+end_src +* COMMENT scratch +#+begin_src emacs-lisp :var buffer=(current-buffer) + (interactive "P\nbbuffer: ") +#+end_src |