add gui, mail and programming language settings

This commit is contained in:
2020-12-05 20:44:33 +01:00
parent c06aba2ba4
commit 7d8b0caeee
13 changed files with 1840 additions and 0 deletions

13
settings/post-settings.el Normal file
View File

@@ -0,0 +1,13 @@
;;; post-settings.el --- Summary -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(setq gc-cons-threshold (* 2 1000 1000)) ;; Make gc pauses faster by decreasing back the threshold. See also above.
(use-package cus-edit
:config
(setq custom-file (concat user-emacs-directory "custom.el"))
(setq custom-buffer-done-kill t)
(load custom-file t t))
(provide 'post-settings)
;;; post-settings.el ends here