14 lines
362 B
EmacsLisp
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)
|