feat: add base init.el

This commit is contained in:
Muhammad Nauman Raza 2024-01-15 18:02:54 +00:00
parent 1d896b073b
commit 8db10757a5
No known key found for this signature in database
GPG key ID: 31BC90D626D2DBBE
2 changed files with 10 additions and 6 deletions

View file

@ -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)

View file

@ -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