Browse Source

Change naming to reflect order of loading

master
Levi Olson 5 years ago
parent
commit
b9302a9539
11 changed files with 50 additions and 50 deletions
  1. +9
    -9
      init.el
  2. +3
    -3
      lisp/01-custom-early-init.el
  3. +3
    -3
      lisp/02-custom-package-setup.el
  4. +3
    -3
      lisp/03-custom-binds.el
  5. +3
    -3
      lisp/04-custom-init.el
  6. +3
    -3
      lisp/05-custom-functions.el
  7. +3
    -3
      lisp/06-custom-exwm.el
  8. +3
    -3
      lisp/07-custom-ligatures.el
  9. +3
    -3
      lisp/08-custom-packages.el
  10. +17
    -0
      lisp/09-custom-packages-config.el
  11. +0
    -17
      lisp/custom-packages-config.el

+ 9
- 9
init.el View File

@ -6,15 +6,15 @@
(add-to-list 'load-path (concat user-emacs-directory "lisp/"))
(require 'custom-early-init)
(require 'custom-package-setup)
(require 'custom-binds)
(require 'custom-init)
(require 'custom-functions)
(require 'custom-exwm)
(require 'custom-ligatures)
(require 'custom-packages)
(require 'custom-packages-config)
(require '01-custom-early-init)
(require '02-custom-package-setup)
(require '03-custom-binds)
(require '04-custom-init)
(require '05-custom-functions)
(require '06-custom-exwm)
(require '07-custom-ligatures)
(require '08-custom-packages)
(require '09-custom-packages-config)
(server-start)

lisp/custom-early-init.el → lisp/01-custom-early-init.el View File

@ -1,4 +1,4 @@
;;; custom-early-init --- Provide early init vars
;;; 01-custom-early-init --- Provide early init vars
;;; Commentary:
@ -30,5 +30,5 @@ Elements have the form ((KEY . [MAP]) CMD ORIGINAL-CMD)")
gc-cons-percentage 0.1)
(garbage-collect)) t)
(provide 'custom-early-init)
;;; custom-early-init.el ends here
(provide '01-custom-early-init)
;;; 01-custom-early-init.el ends here

lisp/custom-package-setup.el → lisp/02-custom-package-setup.el View File

@ -1,4 +1,4 @@
;;; custom-package-setup --- Provide setup for packages and use-package
;;; 02-custom-package-setup --- Provide setup for packages and use-package
;;; Commentary:
;; Configure Melpa
@ -56,5 +56,5 @@
:prefix "C-c h")
)
(provide 'custom-package-setup)
;;; custom-package-setup.el ends here
(provide '02-custom-package-setup)
;;; 02-custom-package-setup.el ends here

lisp/custom-binds.el → lisp/03-custom-binds.el View File

@ -1,4 +1,4 @@
;;; custom-binds --- A set of custom key bindings
;;; 03-custom-binds --- A set of custom key bindings
;;; Commentary:
@ -14,5 +14,5 @@
(bind-key "<M-S-return>" 'ansi-term)
(bind-key "C-c r" '(lambda () (interactive) (load-file user-init-file)))
(provide 'custom-binds)
;;; custom-binds.el ends here
(provide '03-custom-binds)
;;; 03-custom-binds.el ends here

lisp/custom-init.el → lisp/04-custom-init.el View File

@ -1,4 +1,4 @@
;;; custom-init --- Provide custom basic init for emacs
;;; 04-custom-init --- Provide custom basic init for emacs
;;; Commentary:
@ -67,5 +67,5 @@
"Display startup echo area message."
(message "Initialized in %s" (emacs-init-time)))
(provide 'custom-init)
;;; custom-init.el ends here
(provide '04-custom-init)
;;; 04-custom-init.el ends here

lisp/custom-functions.el → lisp/05-custom-functions.el View File

@ -1,4 +1,4 @@
;;; custom-functions --- custom functions prefixed with "leo/"
;;; 05-custom-functions --- custom functions prefixed with "leo/"
;;; Commentary:
@ -100,5 +100,5 @@
(message mode))
)
(provide 'custom-functions)
;;; custom-functions.el ends here
(provide '05-custom-functions)
;;; 05-custom-functions.el ends here

lisp/custom-exwm.el → lisp/06-custom-exwm.el View File

@ -1,4 +1,4 @@
;;; custom-exwm --- Provide EXWM specific config
;;; 06-custom-exwm --- Provide EXWM specific config
;;; Commentary:
@ -134,5 +134,5 @@
)
)
(provide 'custom-exwm)
;;; custom-exwm.el ends here
(provide '06-custom-exwm)
;;; 06-custom-exwm.el ends here

lisp/custom-ligatures.el → lisp/07-custom-ligatures.el View File

@ -1,4 +1,4 @@
;;; custom-ligatures --- PragmataPro specific ligatures
;;; 07-custom-ligatures --- PragmataPro specific ligatures
;;; Commentary:
;; Enable ligatures without prettify-symbols
@ -366,5 +366,5 @@
(add-hook 'emacs-lisp-mode-hook
#'add-pragmatapro-symbol-keywords)
(provide 'custom-ligatures)
;;; custom-ligatures.el ends here
(provide '07-custom-ligatures)
;;; 07-custom-ligatures.el ends here

lisp/custom-packages.el → lisp/08-custom-packages.el View File

@ -1,4 +1,4 @@
;;; custom-packages --- Provide all the use-package declarations
;;; 08-custom-packages --- Provide all the use-package declarations
;;; Commentary:
;;
@ -638,5 +638,5 @@
:full-and-display-names t))
(provide 'custom-packages)
;;; custom-packages.el ends here
(provide '08-custom-packages)
;;; 08-custom-packages.el ends here

+ 17
- 0
lisp/09-custom-packages-config.el View File

@ -0,0 +1,17 @@
;;; 09-custom-packages-config --- Provide all the config that doesn't fit in use-package
;;; Commentary:
;;; Code:
;; Diminish
(diminish 'eldoc-mode)
(diminish 'subword-mode)
;; Dired
(setq list-directory-brief-switches "-al")
(provide '09-custom-packages-config)
;;; 09-custom-packages-config.el ends here

+ 0
- 17
lisp/custom-packages-config.el View File

@ -1,17 +0,0 @@
;;; custom-packages-config --- Provide all the config that doesn't fit in use-package
;;; Commentary:
;;; Code:
;; Diminish
(diminish 'eldoc-mode)
(diminish 'subword-mode)
;; Dired
(setq list-directory-brief-switches "-al")
(provide 'custom-packages-config)
;;; custom-packages-config.el ends here

Loading…
Cancel
Save