Files
sydnix/users/crumb/programs/emacs/modules/syd-ui.el
2025-01-17 16:28:45 -07:00

14 lines
362 B
EmacsLisp

;;; syd-ui.el -*- lexical-binding: t; -*-
;; Beautiful theme in dark and light.
(use-package kanagawa-themes
:config
(load-theme 'kanagawa-wave t))
;; Display (relative) line numbers only in prog-mode derivatives.
(use-package emacs
:hook ((prog-mode-hook . display-line-numbers-mode))
:custom (display-line-numbers-type 'relative))
(provide 'syd-ui)