-
Notifications
You must be signed in to change notification settings - Fork 3
/
init.el
65 lines (49 loc) · 1.84 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
;;; init.el --- -*- lexical-binding: t; -*-
;; Copyright (C) 2018 Binbin Ye
;; Author: Binbin Ye
;; Keywords:
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
;; (package-initialize)
;; Always load newest byte code
(setq load-prefer-newer t)
;; reduce the frequency of garbage collection by making it happen on
;; each 50MB of allocated data (the default is on every 0.76MB)
(setq gc-cons-threshold 90000000)
(load (concat (file-name-directory load-file-name)
"core/core-load-paths.el")
nil (not init-file-debug))
(require 'fate-const)
(require 'fate-core)
(require 'fate-git)
(require 'fate-vertico)
(require 'fate-langs)
(require 'fate-python)
(require 'fate-web)
(require 'fate-writing)
(require 'fate-flycheck)
(require 'fate-lsp)
(require 'fate-flycheck-bridge)
(require 'fate-assist)
(require 'fate-transient)
(require 'fate-docker)
(require 'fate-vterm)
(when IS-MAC
(require 'fate-macos))
(provide 'init)
;;; init.el ends here