aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
blob: 496e37aee05c660d9ae9b2032d8b468cf3e5998d (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
29
30
31
32
33
;; -*- 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-ivy)
(require 'init-company)
(require 'init-org)
(require 'init-lang)
(require 'init-filetype)
(require 'init-deft)
(require 'init-input-method)
(require 'init-projectile)
(require 'init-markdown)
(require 'init-git)
(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)