blob: 1d83cd3ce9db8a7687625e6dede53659fa69924b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;; -*- lexical-binding: t -*-
;; Shutdown GC during initialisation
;; It will be replaced by GCMH :)
(setq gc-cons-threshold most-positive-fixnum)
;; Disable package.el in favour of straight.el
(setq package-enable-at-startup nil)
;; UTF-8 duh
(set-language-environment "UTF-8")
(setq selection-coding-system 'utf-8
default-input-method nil)
(setq user-emacs-directory (file-name-directory load-file-name))
(add-to-list 'load-path (expand-file-name "arkta" user-emacs-directory))
(defconst loaded-early-init t)
|