Merge branch 'emacs-refactor'

This commit is contained in:
Dionisio E Alonso 2024-02-03 15:40:51 -03:00
commit 7f3a8deede
1 changed files with 15 additions and 8 deletions

View File

@ -1,10 +1,17 @@
(custom-set-variables
'(custom-enabled-themes '(tango-dark))
'(display-line-numbers-type 'relative)
'(column-number-mode t)
'(truncate-lines t)
'(tool-bar-mode nil))
(custom-set-faces
'(default ((t (:family "Iosevka Curly Slab" :foundry "UKWN" :slant normal :weight regular :height 113 :width normal)))))
(load-theme 'tango-dark t)
(setq display-line-numbers-type 'relative)
(save-place-mode 1)
(setq column-number-mode t)
(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)
(add-hook 'prog-mode-hook #'display-line-numbers-mode)
(when window-system (set-frame-size (selected-frame) 85 60))