blob: b458107f3afbdf274517de83357ca232e3ccbe58 (
plain)
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
|
;; -*- coding: utf-8; lexical-binding: t; -*-
;; Make startup faster by reducing frequency of garbage collection.
(setq gc-cons-percentage 0.6)
(setq gc-cons-threshold most-positive-fixnum)
;; Make gc pauses faster by decreasing the threhold to 8 MiB (default is
;; 800kB)
(add-hook 'emacs-startup-hook
(lambda () (setq gc-cons-threshold (expt 2 23))))
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
(defconst *is-a-mac* (eq system-type 'darwin))
(defconst *is-a-linux* (eq system-type 'gnu/linux))
(require 'init-package)
(require 'init-evil)
(require 'init-org)
(require 'init-lang)
(require 'init-filetype)
(require 'init-deft)
(require 'init-input-method)
(require 'init-misc)
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(unless (file-exists-p custom-file)
(write-region "" nil custom-file))
(load custom-file)
|