Use the new emodule name
This commit is contained in:
parent
0aecb4e96c
commit
040d0cb13b
8
init.el
8
init.el
@ -86,17 +86,17 @@
|
|||||||
(package-initialize)
|
(package-initialize)
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Load `init-packages'.
|
;; Load `emodule'.
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
|
|
||||||
(add-to-list 'load-path "~/.emacs.d/init-packages")
|
(add-to-list 'load-path "~/.emacs.d/emodule")
|
||||||
(require 'init-packages)
|
(require 'emodule)
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Load modules.
|
;; Load modules.
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
|
|
||||||
(init-packages/init '(
|
(emodule/init '(
|
||||||
editing
|
editing
|
||||||
emacs
|
emacs
|
||||||
files
|
files
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/editing-packages
|
(setq emodule/editing-packages
|
||||||
|
|
||||||
'(duplicate-thing
|
'(duplicate-thing
|
||||||
expand-region
|
expand-region
|
||||||
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
;; Configuration:
|
;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-editing ()
|
(defun emodule/editing-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Duplicate things.
|
;; Duplicate things.
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/emacs-packages
|
(setq emodule/emacs-packages
|
||||||
|
|
||||||
'(info+
|
'(info+
|
||||||
discover-my-major
|
discover-my-major
|
||||||
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
;;; Configuration:
|
;;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-emacs ()
|
(defun emodule/emacs-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Help extensions.
|
;; Help extensions.
|
||||||
@ -107,7 +107,7 @@
|
|||||||
refresh these colours."
|
refresh these colours."
|
||||||
|
|
||||||
(when (and (fboundp 'fci-mode)
|
(when (and (fboundp 'fci-mode)
|
||||||
(fci-mode))
|
fci-mode)
|
||||||
(fci-mode 1))
|
(fci-mode 1))
|
||||||
|
|
||||||
(when (and (fboundp 'highlight-parentheses-mode)
|
(when (and (fboundp 'highlight-parentheses-mode)
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/files-packages
|
(setq emodule/files-packages
|
||||||
|
|
||||||
'(vlf)
|
'(vlf)
|
||||||
|
|
||||||
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
;;; Configuration:
|
;;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-files ()
|
(defun emodule/files-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; View large files.
|
;; View large files.
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/helm-packages
|
(setq emodule/helm-packages
|
||||||
|
|
||||||
'(helm
|
'(helm
|
||||||
helm-descbinds
|
helm-descbinds
|
||||||
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
;;; Configuration:
|
;;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-helm ()
|
(defun emodule/helm-init ()
|
||||||
|
|
||||||
(use-package helm
|
(use-package helm
|
||||||
:init
|
:init
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/parentheses-packages
|
(setq emodule/parentheses-packages
|
||||||
|
|
||||||
'(highlight-parentheses
|
'(highlight-parentheses
|
||||||
rainbow-delimiters
|
rainbow-delimiters
|
||||||
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
;; Configuration:
|
;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-parentheses ()
|
(defun emodule/parentheses-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Highlight parentheses - this package does not use faces for colours,
|
;; Highlight parentheses - this package does not use faces for colours,
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/programming-packages
|
(setq emodule/programming-packages
|
||||||
|
|
||||||
'(company
|
'(company
|
||||||
flycheck
|
flycheck
|
||||||
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
;; Configuration:
|
;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-programming ()
|
(defun emodule/programming-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Company - complete anything.
|
;; Company - complete anything.
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/terminal-packages
|
(setq emodule/terminal-packages
|
||||||
|
|
||||||
'()
|
'()
|
||||||
|
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
;; Configuration:
|
;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-terminal ()
|
(defun emodule/terminal-init ()
|
||||||
|
|
||||||
(use-package term
|
(use-package term
|
||||||
:init
|
:init
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/version-control-packages
|
(setq emodule/version-control-packages
|
||||||
|
|
||||||
'(magit
|
'(magit
|
||||||
diff-hl)
|
diff-hl)
|
||||||
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
;;; Configuration:
|
;;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-version-control ()
|
(defun emodule/version-control-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Load and configure `magit'.
|
;; Load and configure `magit'.
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
;;; Required packages:
|
;;; Required packages:
|
||||||
|
|
||||||
(setq init-packages/workflow-packages
|
(setq emodule/workflow-packages
|
||||||
|
|
||||||
'(workgroups2)
|
'(workgroups2)
|
||||||
|
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
;;; Configuration:
|
;;; Configuration:
|
||||||
|
|
||||||
(defun init-packages/init-workflow ()
|
(defun emodule/workflow-init ()
|
||||||
|
|
||||||
;; --------------------------------------------------------------------------
|
;; --------------------------------------------------------------------------
|
||||||
;; Enable `workgroups'.
|
;; Enable `workgroups'.
|
||||||
|
Reference in New Issue
Block a user