aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init/oni-scheme-init.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init/oni-scheme-init.org')
-rw-r--r--emacs/.emacs.d/init/oni-scheme-init.org21
1 files changed, 0 insertions, 21 deletions
diff --git a/emacs/.emacs.d/init/oni-scheme-init.org b/emacs/.emacs.d/init/oni-scheme-init.org
deleted file mode 100644
index 6056a02..0000000
--- a/emacs/.emacs.d/init/oni-scheme-init.org
+++ /dev/null
@@ -1,21 +0,0 @@
-#+TITLE: Scheme config
-
-Enable paredit mode.
-
-#+BEGIN_SRC emacs-lisp
- (add-hook 'scheme-mode-hook 'paredit-mode)
-#+END_SRC
-
-Add scsh to the list of known interpreters for scheme mode. This
-way shell-scripts that don't have a file extension but specify scsh
-as the interpreter are opened in scheme mode.
-
-#+BEGIN_SRC emacs-lisp
- (add-to-list 'interpreter-mode-alist '("scsh" . scheme-mode))
-#+END_SRC
-
-Enable rainbow delimiters mode.
-
-#+BEGIN_SRC emacs-lisp
- (add-hook 'scheme-mode-hook 'rainbow-delimiters-mode)
-#+END_SRC