diff --git a/init.el b/init.el index 02c31df..69b5a83 100644 --- a/init.el +++ b/init.el @@ -10,12 +10,6 @@ ;; Increase the threshold - performance (setq gc-cons-threshold (* 50 1000 1000)) -;; Set the font -(add-to-list 'default-frame-alist - '(font . "Iosevka SS12-11")) -(set-face-attribute 'default nil :family "Iosevka") -(set-face-attribute 'variable-pitch nil :family "Iosevka") - ;; Disable Emacs' GTK decorations. Done in this file otherwise done too late. (tool-bar-mode -1) (scroll-bar-mode -1) diff --git a/user/init.el b/user/init.el index e69de29..a7cc8f0 100644 --- a/user/init.el +++ b/user/init.el @@ -0,0 +1,10 @@ +;;; init.el --- This file contains user configuration. You're completely free to *safely* work with Dianciemacs here. + +;;; Commentary: +;; +;; All user configuration should be done from this file, +;; In order to keep user code clean and manageable +;; +;;; Code: + +;;; init.el ends here