diff options
Diffstat (limited to 'Emacs/.config/emacs/early-init.el')
-rw-r--r-- | Emacs/.config/emacs/early-init.el | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/early-init.el b/Emacs/.config/emacs/early-init.el index e7a3e75..8222343 100644 --- a/Emacs/.config/emacs/early-init.el +++ b/Emacs/.config/emacs/early-init.el @@ -1,6 +1,26 @@ -;;; early-init.el --- My custom early-init.el -;; Author: Aryadev Chavali <aryadev@aryadevchavali.com -;; This file is NOT part of GNU Emacs. +;;; early-init.el --- My custom early-init.el -*- lexical-binding: t; -*- + +;; Copyright (C) 2022 Aryadev Chavali + +;; Author: Aryadev Chavali <aryadev@aryadevchavali.com> +;; 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: +;; Sets up some variables and graphical configuration to make Emacs +;; less janky looking while loading ;;; Code: (setq gc-cons-threshold most-positive-fixnum |