dotfiles/emacs/init.el

11 lines
427 B
EmacsLisp

(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)))))
(add-hook 'prog-mode-hook #'display-line-numbers-mode)
(when window-system (set-frame-size (selected-frame) 85 60))