feat: add base init.el
This commit is contained in:
parent
1d896b073b
commit
8db10757a5
6
init.el
6
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)
|
||||
|
|
10
user/init.el
10
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
|
Reference in a new issue