feat(emacs): Split lines in setting for readability

This commit is contained in:
Dionisio E Alonso 2024-02-03 12:53:02 -03:00
parent 881a3b70ce
commit a272a609a3
1 changed files with 7 additions and 2 deletions

View File

@ -4,8 +4,13 @@
(setq-default truncate-lines t)
(tool-bar-mode -1)
(set-face-attribute
'default nil :family "Iosevka Curly Slab" :foundry "UKWN" :slant 'normal :weight 'regular :height 113 :width 'normal)
(set-face-attribute 'default nil
:family "Iosevka Curly Slab"
:foundry "UKWN"
:slant 'normal
:weight 'regular
:height 113
:width 'normal)
(add-hook 'prog-mode-hook #'display-line-numbers-mode)
(when window-system (set-frame-size (selected-frame) 85 60))