Majorly re-organize modules

- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
This commit is contained in:
2018-05-20 17:31:11 +01:00
parent 3b07c4cfbf
commit 87a86191db
118 changed files with 592 additions and 463 deletions

View File

@@ -0,0 +1,15 @@
;;; siren-git-timemachine.el --- jimeh's Emacs Siren: git-timemachine configuration.
;;; Commentary:
;; Basic configuration for git-timemachine.
;;; Code:
(use-package git-timemachine
:defer t
:init
(defalias 'gt 'git-timemachine))
(provide 'siren-git-timemachine)
;;; siren-git-timemachine.el ends here