Use the new emodule name

This commit is contained in:
Wojciech Kozlowski 2017-09-02 13:45:42 +01:00
parent 0aecb4e96c
commit 040d0cb13b
10 changed files with 33 additions and 33 deletions

28
init.el
View File

@ -86,27 +86,27 @@
(package-initialize)
;; --------------------------------------------------------------------------
;; Load `init-packages'.
;; Load `emodule'.
;; --------------------------------------------------------------------------
(add-to-list 'load-path "~/.emacs.d/init-packages")
(require 'init-packages)
(add-to-list 'load-path "~/.emacs.d/emodule")
(require 'emodule)
;; --------------------------------------------------------------------------
;; Load modules.
;; --------------------------------------------------------------------------
(init-packages/init '(
editing
emacs
files
helm
parentheses
programming
terminal
version-control
workflow
))
(emodule/init '(
editing
emacs
files
helm
parentheses
programming
terminal
version-control
workflow
))
;; *********************************************************************** ;;

View File

@ -15,7 +15,7 @@
;;; Required packages:
(setq init-packages/editing-packages
(setq emodule/editing-packages
'(duplicate-thing
expand-region
@ -29,7 +29,7 @@
;; Configuration:
(defun init-packages/init-editing ()
(defun emodule/editing-init ()
;; --------------------------------------------------------------------------
;; Duplicate things.

View File

@ -15,7 +15,7 @@
;;; Required packages:
(setq init-packages/emacs-packages
(setq emodule/emacs-packages
'(info+
discover-my-major
@ -30,7 +30,7 @@
;;; Configuration:
(defun init-packages/init-emacs ()
(defun emodule/emacs-init ()
;; --------------------------------------------------------------------------
;; Help extensions.
@ -107,7 +107,7 @@
refresh these colours."
(when (and (fboundp 'fci-mode)
(fci-mode))
fci-mode)
(fci-mode 1))
(when (and (fboundp 'highlight-parentheses-mode)

View File

@ -15,7 +15,7 @@
;;; Required packages:
(setq init-packages/files-packages
(setq emodule/files-packages
'(vlf)
@ -23,7 +23,7 @@
;;; Configuration:
(defun init-packages/init-files ()
(defun emodule/files-init ()
;; --------------------------------------------------------------------------
;; View large files.

View File

@ -15,7 +15,7 @@
;;; Required packages:
(setq init-packages/helm-packages
(setq emodule/helm-packages
'(helm
helm-descbinds
@ -25,7 +25,7 @@
;;; Configuration:
(defun init-packages/init-helm ()
(defun emodule/helm-init ()
(use-package helm
:init

View File

@ -16,7 +16,7 @@
;;; Required packages:
(setq init-packages/parentheses-packages
(setq emodule/parentheses-packages
'(highlight-parentheses
rainbow-delimiters
@ -26,7 +26,7 @@
;; Configuration:
(defun init-packages/init-parentheses ()
(defun emodule/parentheses-init ()
;; --------------------------------------------------------------------------
;; Highlight parentheses - this package does not use faces for colours,

View File

@ -16,7 +16,7 @@
;;; Required packages:
(setq init-packages/programming-packages
(setq emodule/programming-packages
'(company
flycheck
@ -31,7 +31,7 @@
;; Configuration:
(defun init-packages/init-programming ()
(defun emodule/programming-init ()
;; --------------------------------------------------------------------------
;; Company - complete anything.

View File

@ -16,7 +16,7 @@
;;; Required packages:
(setq init-packages/terminal-packages
(setq emodule/terminal-packages
'()
@ -24,7 +24,7 @@
;; Configuration:
(defun init-packages/init-terminal ()
(defun emodule/terminal-init ()
(use-package term
:init

View File

@ -16,7 +16,7 @@
;;; Required packages:
(setq init-packages/version-control-packages
(setq emodule/version-control-packages
'(magit
diff-hl)
@ -25,7 +25,7 @@
;;; Configuration:
(defun init-packages/init-version-control ()
(defun emodule/version-control-init ()
;; --------------------------------------------------------------------------
;; Load and configure `magit'.

View File

@ -16,7 +16,7 @@
;;; Required packages:
(setq init-packages/workflow-packages
(setq emodule/workflow-packages
'(workgroups2)
@ -24,7 +24,7 @@
;;; Configuration:
(defun init-packages/init-workflow ()
(defun emodule/workflow-init ()
;; --------------------------------------------------------------------------
;; Enable `workgroups'.