-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
89 lines (74 loc) · 3.51 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
;;; init.el -- Initialization file. -*- lexical-binding: t; -*-
;; This file is not part of GNU Emacs.
;;
;; License: GPLv3
;;; Commentary:
;; This file is used to set up the packages sources and then call
;; an org-babel tangle in order to load a literate configuration.
;;; Code:
;; ==============================================================
;; Core Settings
;; ==============================================================
;; Base Configuration file used as Core Settings for Emacs
(require 'core-init (concat user-emacs-directory "settings/core/core-init"))
;; Set up the customize file to its own separate file,
;; instead of saving customize settings in init.el.
(setq custom-file (concat user-local-dir "custom.el"))
(load custom-file t)
;; ===============================================================
;; Bootstrap Packages
;; ===============================================================
(require 'packages)
;; ---------------------------------------------------------------
;; Appearance & Theme
;; ---------------------------------------------------------------
(require 'conf-ui) ; Visual (UI) configuration
(require 'theme) ; Use Atom One Dark Theme
(require 'editor) ; Add .editorconfig
(require 'conf-dired) ; Use powered Dired configuration
(require 'workspaces) ; Add windows/workspaces switching
(require 'conf-dashboard); Add Dashboard configuration
(require 'modeline) ; Add PowerLine
(require 'pkg-whichkey) ; Display Key Bindings everywhere
(require 'pkg-neotree) ; Use Neotree file explorer
(require 'pkg-ibuffer) ; ibuffer configuration
(require 'pkg-company) ; Use Company for autocompele everything
(require 'pkg-ivy) ; Use Ivy completition backend
(require 'pkg-flycheck) ; Use Flycheck for spell checking
;; ---------------------------------------------------------------
;; Version Control System
;; ---------------------------------------------------------------
(require 'pkg-magit) ; Use Magit is an interface for Git
(require 'mode-git) ; Use various git config files
(require 'pkg-projects) ; Use Projects for VCS folders
;; ---------------------------------------------------------------
;; Languages and Frameworks
;; ---------------------------------------------------------------
(require 'lang-php) ; use PHP mode
(require 'lang-web) ; add support for web templates
(require 'lang-js) ; use js-mode with configuration
(require 'lang-c-cpp) ; use C/C++/C# configuration
;; (require 'lang-csharp)
(require 'lang-lisp) ; use Lisp mode
;; (require 'lang-java)
(require 'lang-zephir) ; support for Zephir lang
(require 'lang-yaml) ; highlight YML files
(require 'lang-json) ; add support for JSON format
(require 'lang-md) ; add Markdown support
(require 'lang-config) ; add support for various config langs
(require 'fw-php) ; use Tools for any PHP frameworks
;; ---------------------------------------------------------------
;; Tools
;; ---------------------------------------------------------------
(require 'conf-docker) ; provide support for Docker
(require 'conf-shell) ; provide Shell configuration
(require 'conf-logs) ; provide support for .log
(require 'snippets) ; provide Snippets support
;; ---------------------------------------------------------------
;; Documentation and Manuals
;; ---------------------------------------------------------------
(require 'core-docs) ; Use ElDoc configuration
;;; init.el ends here
;; Local Variables:
;; byte-compile-warnings: (not free-vars unresolved)
;; End: