Update
This commit is contained in:
13
config.el
13
config.el
@@ -4,9 +4,16 @@
|
|||||||
;; ;; To disable collection of benchmark data after init is done.
|
;; ;; To disable collection of benchmark data after init is done.
|
||||||
;; (add-hook 'after-init-hook 'benchmark-init/deactivate))
|
;; (add-hook 'after-init-hook 'benchmark-init/deactivate))
|
||||||
|
|
||||||
(setq doom-font (font-spec :family "Maple Mono" :size 20))
|
(pcase system-type
|
||||||
(add-to-list 'default-frame-alist '(height . 53))
|
('darwin ; macOS
|
||||||
(add-to-list 'default-frame-alist '(width . 120))
|
(setq doom-font (font-spec :family "Maple Mono" :size 20))
|
||||||
|
(add-to-list 'default-frame-alist '(height . 53))
|
||||||
|
(add-to-list 'default-frame-alist '(width . 120)))
|
||||||
|
|
||||||
|
('gnu/linux ; Linux (including Debian)
|
||||||
|
(setq doom-font (font-spec :family "Maple Mono" :size 40)) ; 20 * 1.5
|
||||||
|
(add-to-list 'default-frame-alist '(height . 45))
|
||||||
|
(add-to-list 'default-frame-alist '(width . 100))))
|
||||||
(setq catppuccin-flavor 'catppuccin)
|
(setq catppuccin-flavor 'catppuccin)
|
||||||
(setq doom-theme 'modus-operandi-tinted)
|
(setq doom-theme 'modus-operandi-tinted)
|
||||||
(setq display-line-numbers-type 'relative)
|
(setq display-line-numbers-type 'relative)
|
||||||
|
|||||||
13
config.org
13
config.org
@@ -13,9 +13,16 @@
|
|||||||
** Appearance settings
|
** Appearance settings
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(setq doom-font (font-spec :family "Maple Mono" :size 20))
|
(pcase system-type
|
||||||
(add-to-list 'default-frame-alist '(height . 53))
|
('darwin ; macOS
|
||||||
(add-to-list 'default-frame-alist '(width . 120))
|
(setq doom-font (font-spec :family "Maple Mono" :size 20))
|
||||||
|
(add-to-list 'default-frame-alist '(height . 53))
|
||||||
|
(add-to-list 'default-frame-alist '(width . 120)))
|
||||||
|
|
||||||
|
('gnu/linux ; Linux (including Debian)
|
||||||
|
(setq doom-font (font-spec :family "Maple Mono" :size 40)) ; 20 * 1.5
|
||||||
|
(add-to-list 'default-frame-alist '(height . 45))
|
||||||
|
(add-to-list 'default-frame-alist '(width . 100))))
|
||||||
(setq catppuccin-flavor 'catppuccin)
|
(setq catppuccin-flavor 'catppuccin)
|
||||||
(setq doom-theme 'modus-operandi-tinted)
|
(setq doom-theme 'modus-operandi-tinted)
|
||||||
(setq display-line-numbers-type 'relative)
|
(setq display-line-numbers-type 'relative)
|
||||||
|
|||||||
2
init.el
2
init.el
@@ -151,7 +151,7 @@
|
|||||||
(latex +cdlatex +lsp +fold) ; writing papers in Emacs has never been so fun
|
(latex +cdlatex +lsp +fold) ; writing papers in Emacs has never been so fun
|
||||||
lean ; for folks with too much to prove
|
lean ; for folks with too much to prove
|
||||||
;;ledger ; be audit you can be
|
;;ledger ; be audit you can be
|
||||||
;; lua ; one-based indices? one-based indices
|
( lua +lsp +tree-sitter) ; one-based indices? one-based indices
|
||||||
markdown ; writing docs for people to ignore
|
markdown ; writing docs for people to ignore
|
||||||
;;nim ; python + lisp at the speed of c
|
;;nim ; python + lisp at the speed of c
|
||||||
;;nix ; I hereby declare "nix geht mehr!"
|
;;nix ; I hereby declare "nix geht mehr!"
|
||||||
|
|||||||
Reference in New Issue
Block a user