;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*- ;; Time-stamp: <2020-02-27T05:16:37+0100> ;;; Commentary: ;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and ;; above though. ;;; Code: ;; Add path to init files. (push (concat user-emacs-directory "init.d") load-path) (require 'basics/package-management) (require 'basics/global-variables) ;; Set garbage collection threshold to 100 MiB (or 20 MiB) to speed up init. ;; It is reset at the end of the file. (if slow-computer (setq gc-cons-threshold (* 20 1024 1024)) (setq gc-cons-threshold (* 100 1024 1024))) (require 'basics/misc) (require 'basics/input) (require 'basics/buffers) (require 'basics/appearance) (require 'basics/ui) (require 'text/common) (require 'text/latex) (require 'text/tools) (require 'text/web) (require 'text/misc) (require 'programming/common) (require 'programming/lsp) (require 'programming/git) (require 'programming/c++) (require 'programming/elisp) (require 'programming/misc) (require 'net/server) (require 'net/client) ;; Set garbage collection threshold to original value. (setq gc-cons-threshold (car (get 'gc-cons-threshold 'standard-value))) (provide 'init) ;;; init.el ends here