From 36c8b991eeaa75ac2572faff2c4ce58b426a1620 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 16 Oct 2016 22:32:11 +0200 Subject: Make sure init files have unique names --- emacs/.emacs.d/init.org | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'emacs/.emacs.d/init.org') diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 4e79fb0..39cdc45 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -697,21 +697,21 @@ To start off, first I need to enable lexical binding. errors. #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'js (load "js-mode-init")) + (with-eval-after-load 'js (load "oni-js-mode-init")) #+END_SRC - [[file:init/php-mode-init.org][php-mode]] :: I use PHP mode for files that only contain PHP code, no HTML or anything. #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'php-mode (load "php-mode-init")) + (with-eval-after-load 'php-mode (load "oni-php-mode-init")) #+END_SRC - [[file:init/sh-mode-init.org][sh-mode]] :: Used for most types of shell scripting (bash, zsh, etc.). #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'sh-mode (load "sh-mode-init")) + (with-eval-after-load 'sh-mode (load "oni-sh-mode-init")) #+END_SRC ** Emacs lisp mode @@ -932,20 +932,20 @@ To start off, first I need to enable lexical binding. enough /yet/. #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'dired (load "dired-init")) + (with-eval-after-load 'dired (load "oni-dired-init")) #+END_SRC - [[file:init/magit-init.org][Magit]] :: The Emacs git interface. By now I think I may know magit better than the git cli. #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'magit (load "magit-init")) + (with-eval-after-load 'magit (load "oni-magit-init")) #+END_SRC - [[file:init/ediff-init.org][Ediff]] :: A reall diff application. #+BEGIN_SRC emacs-lisp - (with-eval-after-load 'ediff (load "ediff-init")) + (with-eval-after-load 'ediff (load "oni-ediff-init")) #+END_SRC ** Gnus -- cgit v1.2.3-54-g00ecf