10 lines
289 B
EmacsLisp
10 lines
289 B
EmacsLisp
;;; .doom.d/config.el -*- lexical-binding: t; -*-
|
|
|
|
;; Place your private configuration here
|
|
;;
|
|
;; Set Font and theme
|
|
(setq doom-font (font-spec :family "Iosevka" :size 16))
|
|
(setq doom-theme 'doom-city-lights)
|
|
;; Start maximized
|
|
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|