summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--init.el10
1 files changed, 3 insertions, 7 deletions
diff --git a/init.el b/init.el
index 361e2cd..c53ec86 100644
--- a/init.el
+++ b/init.el
@@ -4,9 +4,6 @@
;;; Code:
-(setq gc-cons-percentage 0.5
- gc-cons-threshold (* 128 1024 1024))
-
(defconst emacs-start-time (current-time))
(defun report-time-since-load (&optional suffix)
@@ -20,12 +17,12 @@
(fset 'yes-or-no-p 'y-or-n-p) ; replace yes/no prompts with y/n
-;; set utf-8 as the default encoding
+;; UTF-8 Everywhere
(prefer-coding-system 'utf-8-unix)
-(setq locale-coding-system 'utf-8)
-(set-language-environment 'utf-8)
+(set-default-coding-systems 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
+(setq locale-coding-system 'utf-8)
(setq load-prefer-newer t)
(setq init-file-debug t)
@@ -367,7 +364,6 @@
(cursor-type 'box) ;; cursor is a horizontal bar
(delete-by-moving-to-trash t) ;; delete files by moving them to the trash
(initial-scratch-message "") ;; empty scratch buffer
- (garbage-collection-messages t) ;; log when the gc kicks in
;; bytecomp.el
(byte-compile-verbose nil)